[bugfix] Fix API endpoint to query local and remote users in ND4.0 #141
This file contains hidden or 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: 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@v4 | |
with: | |
repository: ciscoecosystem/release_script | |
path: ./release_script | |
- name: Check out collection code | |
uses: actions/checkout@v4 | |
with: | |
path: ./collection | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- 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 }} |