-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from DFE-Digital/passing-status-checks
Replacement workflows
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: "CodeQL" | ||
|
||
on: | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
types: [opened, reopened] | ||
paths-ignore: | ||
- '**.py' | ||
jobs: | ||
run-codeql: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No CodeQL required" | ||
|
17 changes: 17 additions & 0 deletions
17
.github/workflows/status-checks-replacement-verify_tags.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Verify tags are the same | ||
|
||
on: | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
types: [opened, reopened] | ||
paths-ignore: | ||
- 'src/**' | ||
- 'pyproject.toml' | ||
- 'action.yml' | ||
jobs: | ||
verify-tags: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No tag checking required required" | ||
|