Skip to content

Commit

Permalink
Change CI/CD workflow templates so they inherit secrets by default (#191
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ckunki committed May 21, 2024
1 parent bb2228f commit 7c4be48
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Unreleased

## 🐞 Fixed

* Changed the default linter configuration in the Nox **lint** task to automatically generate a report. Previously, setting it in **pyproject.toml** was required.

## ✨ Feature

* #162: Updated templates for GitHub workflows to inherit secrets by default
1 change: 1 addition & 0 deletions exasol/toolbox/templates/github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
name: Checks
needs: [ check-tag-version-job ]
uses: ./.github/workflows/checks.yml
secrets: inherit

cd-job:
name: Continuous Delivery
Expand Down
1 change: 1 addition & 0 deletions exasol/toolbox/templates/github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
ci-job:
name: Checks
uses: ./.github/workflows/checks.yml
secrets: inherit

metrics:
needs: [ ci-job ]
Expand Down
1 change: 1 addition & 0 deletions exasol/toolbox/templates/github/workflows/pr-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
ci-job:
name: Checks
uses: ./.github/workflows/checks.yml
secrets: inherit

publish-docs:
name: Publish Documentation
Expand Down

0 comments on commit 7c4be48

Please sign in to comment.