Bump github.com/onsi/gomega from 1.27.10 to 1.30.0 #104
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: Release Drafter | |
# this workflow will run when someone labeled a pull request that targets branch is main | |
on: | |
pull_request: | |
types: ["labeled"] | |
permissions: | |
contents: read | |
jobs: | |
update_release_draft: | |
name: Trigger a draft release update | |
permissions: | |
# write permission is required to create a github release | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
# Drafts your next Release notes as Pull Requests are merged into "main" | |
- uses: release-drafter/release-drafter@v5 | |
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml | |
# with: | |
# config-name: my-config.yml | |
# disable-autolabeler: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.QCBOT_TOKEN }} |