Skip to content

Commit 7ff062d

Browse files
committed
debug
1 parent 27f7866 commit 7ff062d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ env:
1818
SEMVER_CHECKS: >
1919
${{ contains(github.event.pull_request.bodyText, '\nci: ignore-semver')
2020
&& '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') }}"
2127
2228
defaults:
2329
run:
@@ -68,7 +74,7 @@ jobs:
6874
steps:
6975
- uses: actions/checkout@v5
7076
- name: Setup Rust toolchain
71-
run: ./ci/install-rust.sh
77+
run: ./ci/install-rust.sh; printenv
7278

7379
- name: Install semver-checks
7480
uses: taiki-e/install-action@cargo-semver-checks

0 commit comments

Comments
 (0)