@codfish/actions-playground 0.0.0-PR-56--0e7a14a → 0.0.0-PR-58--5e1d9de
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/lint-pr-title.yml +21 -0
- package/Dockerfile +1 -1
- package/package.json +1 -1
- package/provisioning/Chart.yml +2 -2
- package/test.txt +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Validate pr title
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types: [edited]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
validate:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
concurrency:
|
|
12
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
13
|
+
cancel-in-progress: true
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/setup-node@v3
|
|
17
|
+
with:
|
|
18
|
+
node-version: 20
|
|
19
|
+
|
|
20
|
+
- run: |
|
|
21
|
+
echo "${{ github.event.pull_request.title }}" | npx commitlint
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
package/provisioning/Chart.yml
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
appVersion:
|
|
1
|
+
appVersion: 5.0.0
|
|
2
2
|
name: actions-playground
|
|
3
|
-
version:
|
|
3
|
+
version: 5.0.0
|
package/test.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
testing pr title squash merges
|
|
1
|
+
testing pr title squash merges with breaking change
|