-
-
Save KyMidd/e919fb4848bf880dc366f12dc30fc6dc to your computer and use it in GitHub Desktop.
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: Set Repo Permissions | |
on: | |
# Run automatically when master updated | |
push: | |
branches: | |
- master | |
# Permit manual trigger | |
workflow_dispatch: | |
jobs: | |
set_repo_permissions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Repo Permissions | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
./repoUpdateScript.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment