@codfish/actions-playground 0.0.0-PR-58--8cf6299 → 0.0.0-PR-58--bcde1cb

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.
@@ -5,7 +5,7 @@ on:
5
5
  types: [edited, opened, reopened]
6
6
 
7
7
  jobs:
8
- validate:
8
+ validate-pr-title:
9
9
  runs-on: ubuntu-latest
10
10
 
11
11
  concurrency:
@@ -20,9 +20,11 @@ jobs:
20
20
  - name: install commitlint deps
21
21
  run: npm install @commitlint/{cli,config-conventional}
22
22
 
23
+ # todo: loosen restrictions set in @commitlint/config-conventional to allow for more flexibility
23
24
  - name: create commitlint config without yaml errors
24
25
  run: |
25
26
  echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js
26
27
 
27
- - run: |
28
+ - name: Validate PR title
29
+ run: |
28
30
  echo "${{ github.event.pull_request.title }}" | npx -y --no commitlint
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "0.0.0-PR-58--8cf6299",
3
+ "version": "0.0.0-PR-58--bcde1cb",
4
4
  "description": "My own testing ground for messing around with GitHub Actions.",
5
5
  "private": false,
6
6
  "publishConfig": {