Setup GitHub repository #3
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: Setup GitHub repository | |
on: | |
create: | |
jobs: | |
configure-github: | |
name: Configure GitHub branch protection | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.PAT_FROM_DRP }} # secrets.GITHUB_TOKEN | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup GitHub Pages for repository | |
run: gh api -X POST /repos/${{ github.repository }}/pages --input .github/configurations/pages.json | |
- name: Setup ruleset for repository | |
run: gh api -X POST /repos/${{ github.repository }}/rulesets --input .github/configurations/rulesets.json | |
- name: Disable this workflow | |
run: gh workflow disable --repo ${{ github.repository }} "${{ github.workflow }}" |