fix: Exclude CHANGELOG howto from distribution archives #120
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
# https://github.com/fuxingloh/multi-labeler | |
# https://www.conventionalcommits.org/ | |
# https://github.com/warrensbox/terraform-switcher/labels | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, ready_for_review] | |
branches: [master, main] | |
pull_request_target: # for OSS with public contributions (forked PR) | |
types: [opened, edited, synchronize, ready_for_review] | |
branches: [master, main] | |
permissions: | |
# Setting up permissions in the workflow to limit the scope of what it can do. Optional! | |
contents: read # the config file | |
issues: write # for labeling issues (on: issues) | |
pull-requests: write # for labeling pull requests (on: pull_request_target or on: pull_request) | |
statuses: write # to generate status | |
checks: write # to generate status | |
jobs: | |
labeler: | |
name: Multi Labeler | |
runs-on: ubuntu-latest | |
steps: | |
- uses: fuxingloh/multi-labeler@v4 |