-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TWM-15: Updating workflows with latest changes
- Loading branch information
1 parent
0dc547b
commit b7b1baf
Showing
3 changed files
with
17 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
--- | ||
name: Code Linting | ||
on: | ||
pull_request: | ||
branches: | ||
- 1.x | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
- name: Run CodeSniffer | ||
uses: discoverygarden/CodeSniffer@v1 |
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,14 @@ | ||
--- | ||
name: Auto Semver | ||
on: | ||
pull_request_target: | ||
types: closed | ||
branches: | ||
- 1.x | ||
jobs: | ||
update: | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run Auto Semver | ||
uses: discoverygarden/auto-semver@v1 |