fix: users with VIEW_ENVIRONMENT should be able to retrieve environment #1017
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: Conventional Commit | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
conventional-commit: | |
name: Conventional Commit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check PR Conventional Commit title | |
uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
types: | # mirrors changelog-sections in the /release-please-config.json | |
feat | |
fix | |
infra | |
ci | |
docs | |
deps | |
perf | |
refactor | |
test | |
chore |