We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c49e5f8 + 511c5f0 commit f7727fcCopy full SHA for f7727fc
.github/workflows/toc-generator_push.yaml
@@ -12,8 +12,11 @@ permissions:
12
jobs:
13
validate-branch:
14
runs-on: ubuntu-22.04
15
+ outputs:
16
+ passed: ${{ steps.check-branch.outputs.passed }}
17
steps:
18
- name: Check if ref is not default branch
19
+ id: check-branch
20
run: |
21
if [ "${{ github.event_name }}" == "pull_request" ]; then
22
target_branch="${{ github.event.pull_request.base.ref }}"
@@ -34,8 +37,11 @@ jobs:
34
37
35
38
validate-commit-message:
36
39
40
41
+ passed: ${{ steps.validate-message.outputs.passed }}
42
43
- name: Verify commit message contains...
44
+ id: validate-message
45
46
commit_message="${{ github.event.head_commit.message }}"
47
0 commit comments