🤖 Archive Inactive Repos (MoJ) #227
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: 🤖 Archive Inactive Repos (MoJ) | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 12 * * 1-5" | |
jobs: | |
archive-repos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: "3.11" | |
cache: "pipenv" | |
- name: Install Pipenv | |
run: | | |
pip install pipenv | |
pipenv install | |
- run: pipenv run python -m bin.archive_repositories | |
env: | |
ADMIN_GITHUB_TOKEN: ${{ secrets.OPS_ENG_GENERAL_ADMIN_BOT_PAT }} | |
GITHUB_ORGANIZATION_NAME: ministryofjustice | |
LOGGING_LEVEL: ${{ secrets.LOGGING_LEVEL }} | |
- 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 GitHub Action Run" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |