Merge pull request #2663 from CumulusNetworks/create-pull-request/patch #468
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: 'Release Note Publisher' | |
on: | |
push: | |
branches: | |
- rn-stage | |
jobs: | |
release-notes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v2 | |
- name: Run the **STAGE** RN script | |
run: | | |
python3 utils/build_rnstage_rns.py | |
## comment out FOSS processing temporarily for rn-stage !! python3 utils/build_rnstage_foss_licenses.py | |
- name: Create PR | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: "Automated release note commit" | |
env: | |
GITHUB_TOKEN: ${{ secrets.STU_GITHUB_TOKEN }} |