🤖 Add GitHub Members to Root Team (MoJAS) #1082
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: 🤖 Add GitHub Members to Root Team (MoJAS) | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 8,10,12,14,16 * * 1-5" | |
jobs: | |
run-script: | |
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 python3 -m bin.add_users_all_org_members_github_team | |
env: | |
ADMIN_GITHUB_TOKEN: ${{ secrets.OPS_ENG_GENERAL_ADMIN_BOT_PAT }} | |
GITHUB_ORGANIZATION_NAME: moj-analytical-services | |
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 }} |