Skip to content

Commit 8cb98e7

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/fix-deployment-ci
2 parents d5304e8 + 16e1052 commit 8cb98e7

File tree

9 files changed

+71
-6
lines changed

9 files changed

+71
-6
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Lint PR Title
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- reopened
9+
10+
jobs:
11+
lint-pr-title:
12+
permissions:
13+
pull-requests: read
14+
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]

.github/workflows/coverage.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1+
name: Coverage
2+
13
on:
24
pull_request:
3-
branches:
4-
- develop
5-
- main
65

76
jobs:
87
coverage:

.github/workflows/deploy-subgraph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: ./.github/workflows/main.yml
2323
with:
2424
node-version: 20
25-
25+
2626
deploy:
2727
runs-on: ubuntu-latest
2828
# Associate the job with a GitHub Environment which has pre-defined variables and secrets.

.github/workflows/docker-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
build:
3030
needs: compute-tag
31-
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/docker-build.yml@docker-build-v2.0.0
31+
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/docker-build.yml@docker-build-v2.3.1
3232
with:
3333
image-name: 'iexechub/voucher-subgraph-deployer'
3434
image-tag: ${{ needs.compute-tag.outputs.computed_tag }}

.github/workflows/docker-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request]
44

55
jobs:
66
build-test:
7-
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/docker-build.yml@docker-build-v2.0.0
7+
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/docker-build.yml@docker-build-v2.3.1
88
with:
99
image-name: 'iexechub/voucher-subgraph-deployer'
1010
image-tag: ${{ github.sha }}

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: release-please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
issues: write
11+
pull-requests: write
12+
13+
jobs:
14+
release-please:
15+
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
16+
secrets: inherit

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{".":"1.1.0"}

release-please-config.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"packages": {
3+
".": {
4+
"release-type": "node",
5+
"include-v-in-tag": true,
6+
"include-component-in-tag": false,
7+
"changelog-path": "CHANGELOG.md"
8+
}
9+
},
10+
"changelog-sections": [
11+
{ "type": "feat", "section": "🚀 Features", "hidden": false },
12+
{ "type": "change", "section": "🚀 Features", "hidden": false },
13+
{ "type": "deprecate", "section": "⚠️ Changes", "hidden": false },
14+
{ "type": "remove", "section": "⚠️ Changes", "hidden": false },
15+
{ "type": "fix", "section": "🐞 Bug Fixes", "hidden": false },
16+
{ "type": "revert", "section": "🐞 Bug Fixes", "hidden": false },
17+
{ "type": "security", "section": "🐞 Bug Fixes", "hidden": false },
18+
{ "type": "perf", "section": "✨ Polish", "hidden": false },
19+
{ "type": "refactor", "section": "✨ Polish", "hidden": false },
20+
{ "type": "style", "section": "✨ Polish", "hidden": false },
21+
{ "type": "build", "section": "🧰 Other", "hidden": false },
22+
{ "type": "chore", "section": "🧰 Other", "hidden": false },
23+
{ "type": "deps", "section": "🧰 Other", "hidden": true },
24+
{ "type": "ci", "section": "🧰 Other", "hidden": true },
25+
{ "type": "test", "section": "🧪 Tests", "hidden": false },
26+
{ "type": "docs", "section": "📚 Documentation", "hidden": true }
27+
],
28+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
29+
}

renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"local>iExecBlockchainComputing/renovate-config"
5+
]
6+
}

0 commit comments

Comments
 (0)