-
Notifications
You must be signed in to change notification settings - Fork 1
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 #57 from DNAstack/Do-not-fetch-when-committing-upd…
…ated-wdl-ci-config-file-BIOS-550 Do not fetch when committing updated wdl ci config file
- Loading branch information
Showing
3 changed files
with
14 additions
and
13 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 |
---|---|---|
|
@@ -15,7 +15,7 @@ If any step of the action fails, the check will fail; however if some task tests | |
# GitHub action usage | ||
|
||
```yaml | ||
- uses: dnastack/[email protected].2 | ||
- uses: dnastack/[email protected].3 | ||
with: | ||
# Configuration file where tests can be found | ||
# Default: wdl-ci.config.json | ||
|
@@ -87,11 +87,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: wdl-ci | ||
uses: dnastack/[email protected].2 | ||
uses: dnastack/[email protected].3 | ||
with: | ||
wallet-url: ${{ secrets.WALLET_URL }} | ||
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }} | ||
|
@@ -113,13 +113,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: wdl-ci | ||
uses: dnastack/[email protected].2 | ||
uses: dnastack/[email protected].3 | ||
with: | ||
wallet-url: ${{ secrets.WALLET_URL }} | ||
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }} | ||
|
@@ -143,13 +143,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: wdl-ci | ||
uses: dnastack/[email protected].2 | ||
uses: dnastack/[email protected].3 | ||
with: | ||
wallet-url: ${{ secrets.WALLET_URL }} | ||
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }} | ||
|
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 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,7 +1,7 @@ | ||
[project] | ||
name = "wdl-testing-cli" | ||
description = "DNAstack WDL testing CLI" | ||
version = "2.0.2" | ||
version = "2.0.3" | ||
authors = [ | ||
{ name = "DNAstack", email = "[email protected]" } | ||
] | ||
|