fix(usage/record): add provider as the resource #4697
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: 'Require Conventional Commits' | |
on: | |
# `pull_request_target` event runs in the context of the base of the pull request, rather than in the context of the merge commit, as the pull_request event does. | |
# This prevents execution of unsafe code from the head of the pull request that could alter your repository or steal any secrets you use in your workflow. | |
# This event allows your workflow to do things like label or comment on pull requests from forks. | |
# Avoid using this event if you need to build or run code from the pull request. | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
main: | |
name: Validate PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |