This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
[DEVOPS-271] Cache lower-case version of .azure directory #9
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: PR Checks | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
pr-labels: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
name: PR Labels | |
uses: Andrews-McMeel-Universal/reusable_workflows/.github/workflows/pr-labels.yaml@2 | |
secrets: | |
PAT_ACTION_CI: ${{ secrets.PAT_ACTION_CI }} | |
codeowners-validation: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
name: Codeowners File Validation | |
uses: Andrews-McMeel-Universal/reusable_workflows/.github/workflows/codeowners-validation.yaml@2 | |
jira-lint: | |
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'amutechtest' && github.ref != 'refs/heads/development' && github.ref != 'refs/heads/main' }} | |
name: Jira PR Linter | |
uses: Andrews-McMeel-Universal/reusable_workflows/.github/workflows/jira-lint.yaml@2 | |
with: | |
fail-on-error: false | |
skip-comments: true | |
secrets: | |
JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} | |
lint: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
name: Simple Lint | |
uses: Andrews-McMeel-Universal/reusable_workflows/.github/workflows/simple-lint.yaml@2 | |
secrets: | |
PAT_ACTION_CI: ${{ secrets.PAT_ACTION_CI }} |