Skip to content

Commit

Permalink
inherit secrets for call live workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fhnaumann committed Oct 15, 2024
1 parent f3f92fb commit ad07df1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/live-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
on:
workflow_call:

secrets:
NODE_AUTH_TOKEN:
required: true

jobs:
unit-and-integration-tests:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/plugin-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
reporter: java-junit
fail-on-error: true
call-live-workflow:
needs: [integration-tests]
uses: ./.github/workflows/live-tests.yml
secrets: inherit


Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void beforeAll(ExtensionContext extensionContext) throws Exception {
Assertions.fail("Stage variable not set to 'testing' when running the test suite. Aborting!");
}
DynamoDBHelper.clearDynamoDBTestingTable();
// A comment 5
// A comment 6
// TODO: clear s3

DynamoDBHelper.setUpEmptyDynamoDBTestingTable();
Expand Down

0 comments on commit ad07df1

Please sign in to comment.