Update zircote/swagger-php requirement from 4.8.0 to 4.9.3 #2
Workflow file for this run
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: Auto Generator Changelog | |
on: | |
pull_request: | |
types: [closed] #only closed pr | |
branches: | |
- master #trigger this action if the pr is related with this branch | |
jobs: | |
update_changelog: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Update Changelog | |
uses: AntonioGally/ag-changelogger/@main | |
with: | |
commitEmail: [email protected] | |
commitUserName: AntonioGally | |
changelogPath: ./CHANGELOG.md #Relative path | |
githubToken: ${{ secrets.GITHUB_TOKEN }} #Github default token, PATs are recomended |