We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f7866 commit 7ff062dCopy full SHA for 7ff062d
1 file changed
.github/workflows/ci.yaml
@@ -18,6 +18,12 @@ env:
18
SEMVER_CHECKS: >
19
${{ contains(github.event.pull_request.bodyText, '\nci: ignore-semver')
20
&& 'ignore' || 'check' }}
21
+ TXT1: ${{ github.event.pull_request.body }}
22
+ TXT2: ${{ github.event.pull_request.bodyText }}
23
+ TXT3: "${{ contains(github.event.pull_request.bodyText, 'ci: ignore-semver') }}"
24
+ TXT4: "${{ contains(github.event.pull_request.bodyText, '\nci: ignore-semver') }}"
25
+ TXT5: >
26
+ "${{ contains(github.event.pull_request.bodyText, '\nci: ignore-semver') }}"
27
28
defaults:
29
run:
@@ -68,7 +74,7 @@ jobs:
68
74
steps:
69
75
- uses: actions/checkout@v5
70
76
- name: Setup Rust toolchain
71
- run: ./ci/install-rust.sh
77
+ run: ./ci/install-rust.sh; printenv
72
78
73
79
- name: Install semver-checks
80
uses: taiki-e/install-action@cargo-semver-checks
0 commit comments