-
-
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.
- Loading branch information
1 parent
3fa35af
commit b5353f8
Showing
20 changed files
with
1,225 additions
and
639 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 @@ | ||
2022-06-30T22:57:32.398Z |
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
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 |
---|---|---|
|
@@ -17,19 +17,34 @@ | |
#/ | ||
|
||
# Workflow name: | ||
name: Cancel Workflow Runs | ||
name: cancel | ||
|
||
# Workflow triggers: | ||
on: | ||
# Allow the workflow to be manually run: | ||
workflow_dispatch: | ||
|
||
# Workflow jobs: | ||
jobs: | ||
|
||
# Define a job to cancel existing workflow runs: | ||
cancel: | ||
runs-on: ubuntu-latest | ||
|
||
# Define a display name: | ||
name: 'Cancel workflow runs' | ||
|
||
# Define the type of virtual host machine: | ||
runs-on: 'ubuntu-latest' | ||
|
||
# Time limit: | ||
timeout-minutes: 3 | ||
|
||
# Define the sequence of job steps... | ||
steps: | ||
- uses: styfle/[email protected] | ||
|
||
# Cancel existing workflow runs: | ||
- name: 'Cancel existing workflow runs' | ||
uses: styfle/[email protected] | ||
with: | ||
workflow_id: >- | ||
benchmark.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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
#/ | ||
|
||
# Workflow name: | ||
name: Close Pull Requests | ||
name: close_pull_requests | ||
|
||
# Workflow triggers: | ||
on: | ||
|
Oops, something went wrong.