Skip to content

Commit 7c4be48

Browse files
authored
Change CI/CD workflow templates so they inherit secrets by default (#191)
1 parent bb2228f commit 7c4be48

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

doc/changes/unreleased.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Unreleased
22

33
## 🐞 Fixed
4+
45
* Changed the default linter configuration in the Nox **lint** task to automatically generate a report. Previously, setting it in **pyproject.toml** was required.
6+
7+
## ✨ Feature
8+
9+
* #162: Updated templates for GitHub workflows to inherit secrets by default

exasol/toolbox/templates/github/workflows/ci-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
name: Checks
1616
needs: [ check-tag-version-job ]
1717
uses: ./.github/workflows/checks.yml
18+
secrets: inherit
1819

1920
cd-job:
2021
name: Continuous Delivery

exasol/toolbox/templates/github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
ci-job:
1919
name: Checks
2020
uses: ./.github/workflows/checks.yml
21+
secrets: inherit
2122

2223
metrics:
2324
needs: [ ci-job ]

exasol/toolbox/templates/github/workflows/pr-merge.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
ci-job:
1212
name: Checks
1313
uses: ./.github/workflows/checks.yml
14+
secrets: inherit
1415

1516
publish-docs:
1617
name: Publish Documentation

0 commit comments

Comments
 (0)