Skip to content

Bump actions/checkout from 3 to 4 #105

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #105

Workflow file for this run

name: Changie Gen
on:
pull_request:
# catch when the PR is opened with the label or when the label is added
types: [labeled]
permissions:
contents: write
pull-requests: read
jobs:
generate_changelog:
strategy:
matrix:
include:
- label: "dependencies"
changie_kind: "Dependency"
runs-on: ubuntu-latest
steps:
- name: Create and commit changelog on bot PR
if: ${{ contains(github.event.pull_request.labels.*.name, matrix.label) }}
id: bot_changelog
uses: emmyoop/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.ORG_GITHUB_TOKEN }}
commit_author_name: "Github Build Bot"
commit_author_email: "<[email protected]>"
commit_message: "Add automated changelog yaml from template for bot PR"
changie_kind: ${{ matrix.changie_kind }}
label: ${{ matrix.label }}