-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fixes reusable publish workflow to install deps before trying to …
…publish (#47) * ci: fixes reusable publish workflow to install deps before trying to publish * ci(labeler): fixes labeler configuration * chore: fixes styling in labeler.yml file
- Loading branch information
1 parent
1b8ca59
commit 2a6704c
Showing
2 changed files
with
22 additions
and
12 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 |
---|---|---|
@@ -1,19 +1,27 @@ | ||
contracts: | ||
- ./contracts/**/* | ||
- ./contracts/* | ||
- ./.github/workflows/contracts-*.yml | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ./contracts/**/* | ||
- ./contracts/* | ||
- ./.github/workflows/contracts-*.yml | ||
|
||
sdk: | ||
- ./sdk/**/* | ||
- ./sdk/* | ||
- ./.github/workflows/sdk-*.yml | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ./sdk/**/* | ||
- ./sdk/* | ||
- ./.github/workflows/sdk-*.yml | ||
|
||
subgraph: | ||
- ./subgraph/**/* | ||
- ./subgraph/* | ||
- ./.github/workflows/subgraph-*.yml | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ./subgraph/**/* | ||
- ./subgraph/* | ||
- ./.github/workflows/subgraph-*.yml | ||
|
||
configs: | ||
- ./configs/**/* | ||
- ./configs/* | ||
- ./.github/workflows/configs-*.yml | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ./configs/**/* | ||
- ./configs/* | ||
- ./.github/workflows/configs-*.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