🤖 Generate GitHub Standards Report #216
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🤖 Generate GitHub Standards Report | |
on: | |
schedule: | |
- cron: "0 4 * * *" | |
workflow_dispatch: | |
jobs: | |
generate-github-standards-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: "pipenv" | |
- name: Install Pipenv | |
run: | | |
pip install pipenv | |
pipenv install | |
- run: pipenv run python3 -m bin.report_on_repository_standards --oauth-token ${{ secrets.OPS_ENG_GENERAL_ADMIN_BOT_PAT }} --api-key ${{ secrets.REPORTS_API_KEY }} --url https://operations-engineering-reports-prod.cloud-platform.service.justice.gov.uk --endpoint /api/v2/update-github-reports | |
- name: Report failure to Slack | |
if: always() | |
uses: ravsamhq/notify-slack-action@472601e839b758e36c455b5d3e5e1a217d4807bd # 2.5.0 | |
with: | |
status: ${{ job.status }} | |
notify_when: "failure" | |
notification_title: "Failed to generate GitHub Standards Report" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |