Skip to content

Instantly share code, notes, and snippets.

@KyMidd

KyMidd/asdf.yml Secret

Created November 20, 2022 18:59
Show Gist options
  • Save KyMidd/e919fb4848bf880dc366f12dc30fc6dc to your computer and use it in GitHub Desktop.
Save KyMidd/e919fb4848bf880dc366f12dc30fc6dc to your computer and use it in GitHub Desktop.
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