Skip to content

Commit

Permalink
[ignore] Add ability to create release PR automatically (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyuezhao authored Mar 15, 2022
1 parent 0929a9c commit 98827dd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/changelog-generation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Generate Changelog
on:
push:
branches: master
jobs:
generate-changelog:
name: Run automation script
runs-on: ubuntu-latest
steps:
- name: Check out script code
uses: actions/checkout@v3
with:
repository: ciscoecosystem/release_script
path: ./release_script

- name: Check out collection code
uses: actions/checkout@v3
with:
path: ./collection

- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install release script requirements
run: pip install -r ./release_script/requirements.txt

- name: Run automation script
run: python ./release_script/script.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 98827dd

Please sign in to comment.