Release for v0.18.0 #944
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: generate CREDITS | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
generate: | |
if: startsWith(github.head_ref, 'dependabot/') && github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
check-latest: true | |
- name: Generate token # required to trigger actions on the commit | |
id: generate_token | |
uses: tibdex/[email protected] | |
with: | |
app_id: ${{ secrets.WRITE_APP_ID }} | |
private_key: ${{ secrets.WRITE_PRIVATE_KEY }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
token: ${{ steps.generate_token.outputs.token }} | |
- name: Generate CREDITS | |
run: make credits | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
add: CREDITS | |
default_author: github_actions | |
message: 'chore(deps): generate CREDITS' |