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.
BASE_BRANCH
1 parent 641ba71 commit 5ffe039Copy full SHA for 5ffe039
.github/workflows/build.yml
@@ -198,9 +198,10 @@ jobs:
198
git fetch upstream
199
export GIT_COMMITTER_EMAIL="[email protected]"
200
export GIT_COMMITTER_NAME="RL CI"
201
- git rebase upstream/0.1
+ export BASE_BRANCH="${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}"
202
+ git rebase upstream/"$BASE_BRANCH"
203
- name: For each commit, run cargo check (including in fuzz)
- run: ci/check-each-commit.sh upstream/0.1
204
+ run: ci/check-each-commit.sh upstream/"$BASE_BRANCH"
205
206
check_release:
207
runs-on: ubuntu-latest
0 commit comments