Skip to content

Commit 5f73828

Browse files
committed
Update Release Workflows (#133)
1 parent e127859 commit 5f73828

File tree

4 files changed

+50
-37
lines changed

4 files changed

+50
-37
lines changed

.gitattributes

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
/.github export-ignore
2-
/tests export-ignore
3-
/tests-output export-ignore
4-
.editorconfig export-ignore
5-
.eslintignore export-ignore
6-
.eslintrc.cjs export-ignore
7-
.git-blame-ignore-revs export-ignore
8-
.gitattributes export-ignore
9-
.gitignore export-ignore
10-
.php-cs-fixer.dist.php export-ignore
11-
.prettier.cjs export-ignore
12-
CHANGELOG.md export-ignore
13-
composer.lock export-ignore
14-
package-lock.json export-ignore
15-
phpstan.neon export-ignore
16-
phpstan.neon.dist export-ignore
17-
phpunit.xml.dist export-ignore
18-
pint.json export-ignore
19-
rector.php export-ignore
20-
RELEASE.md export-ignore
21-
tlint.json export-ignore
22-
tsconfig.json export-ignore
1+
.claude export-ignore
2+
/.github export-ignore
3+
/tests export-ignore
4+
/tests-output export-ignore
5+
.editorconfig export-ignore
6+
.eslintignore export-ignore
7+
.eslintrc.cjs export-ignore
8+
.git-blame-ignore-revs export-ignore
9+
.gitattributes export-ignore
10+
.gitignore export-ignore
11+
.php-cs-fixer.dist.php export-ignore
12+
.prettier.cjs export-ignore
13+
CHANGELOG.md export-ignore
14+
composer.lock export-ignore
15+
package-lock.json export-ignore
16+
phpstan.neon export-ignore
17+
phpstan.neon.dist export-ignore
18+
phpunit.xml.dist export-ignore
19+
pint.json export-ignore
20+
rector.php export-ignore
21+
RELEASE.md export-ignore
22+
tlint.json export-ignore
23+
tsconfig.json export-ignore

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ version: 2
22
updates:
33
- package-ecosystem: "composer"
44
directory: "/"
5+
cooldown:
6+
default-days: 7
57
schedule:
68
interval: weekly
79
day: wednesday

.github/workflows/_preRelease.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,18 @@ on:
77
- '!v[0-9]+.[0-9]+.[0-9]+'
88

99
jobs:
10-
CreatePreRelease:
11-
name: CreatePreRelease
12-
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/createRelease.yml@v1
13-
with:
14-
generateReleaseNotes: true
15-
isDraft: false
16-
preRelease: true
17-
secrets:
18-
token: ${{ secrets.GITHUB_TOKEN }}
10+
CreateRelease:
11+
name: Create Pre-Release
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
steps:
16+
- name: Create Pre-Release
17+
uses: EncoreDigitalGroup/ci-workflows/actions/github/createRelease@v2
18+
with:
19+
repository: ${{ github.repository }}
20+
tagName: ${{ github.ref_name }}
21+
generateReleaseNotes: true
22+
isDraft: false
23+
preRelease: true
24+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/_release.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ permissions: write-all
1111
jobs:
1212
CreateRelease:
1313
name: Create Release
14-
uses: EncoreDigitalGroup/ci-workflows/.github/workflows/github_createRelease.yml@v2
14+
runs-on: ubuntu-latest
1515
permissions:
1616
contents: write
17-
with:
18-
generateReleaseNotes: true
19-
isDraft: false
20-
secrets:
21-
token: ${{ secrets.GITHUB_TOKEN }}
17+
steps:
18+
- name: Create Release
19+
uses: EncoreDigitalGroup/ci-workflows/actions/github/createRelease@v2
20+
with:
21+
repository: ${{ github.repository }}
22+
tagName: ${{ github.ref_name }}
23+
generateReleaseNotes: true
24+
isDraft: false
25+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)