Merge pull request #2641 from CumulusNetworks/create-pull-request/patch #3085
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' | |
## Currently DISABLED in stage - to re-enable, change the branches value back to "stage" | |
on: | |
push: | |
branches: | |
- stage | |
jobs: | |
release-notes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v2 | |
- name: Run the RN and FOSS scripts | |
run: | | |
python3 utils/build_rns.py | |
#comment out foss 4-30-24 python3 utils/build_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 }} |