fix: correct workflow triggers and writable permissions

Signed-off-by: gardar <gardar@users.noreply.github.com>
This commit is contained in:
gardar 2023-03-01 17:49:05 +00:00
parent 590e3308d6
commit c13c60fd5f
No known key found for this signature in database
GPG key ID: 75FAE37CBA8C13C2
3 changed files with 10 additions and 5 deletions

View file

@ -4,9 +4,11 @@ on:
push:
branches-ignore:
- main
pull_request_target:
pull_request:
types:
- '!closed'
- opened
- edited
- reopened
workflow_dispatch:
env:

View file

@ -2,13 +2,15 @@
on:
pull_request_target:
types: [opened, edited, synchronize, reopened]
permissions:
pull-requests: write
name: Auto label pull request
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: "Confirm correct pull request title"
uses: deepakputhraya/action-pr-title@master
uses: mmubeen/action-pr-title@master # until PR gets merged https://github.com/deepakputhraya/action-pr-title/pull/29
with:
allowed_prefixes: 'feat,feature,fix,major,breaking,minor,enhancement,deprecated,removed,security,bug,bugfix,docs,packaging,test,refactor,refactoring,skip-release,skip_changelog'

View file

@ -9,9 +9,10 @@ jobs:
release:
if: |
github.event.pull_request.merged &&
github.ref == github.event.repository.default_branch &&
!contains(github.event.pull_request.labels.*.name, 'skip_changelog')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
@ -30,7 +31,7 @@ jobs:
run: antsibull-changelog release -v --version "${{ steps.version.outputs.next-version }}"
- name: "Run antsichaut"
uses: rndmh3ro/antsichaut-action@main
uses: gardar/antsichaut-action@latest # Until new pip release gets published: https://github.com/rndmh3ro/antsichaut/issues/7
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
since_version: "${{ steps.version.outputs.current-version }}"