Skip to content

Commit 8df586d

Browse files
committed
Rename commit-status-label to commit-status-context
1 parent c2177b8 commit 8df586d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# to avoid that, GH restricts certain keywords, 'login' is one of those restricted keywords
6565
# and hence is not a real username, https://github.com/login is the login page, not a user
6666
contributor-login: login
67-
commit-status-label: CLA test
67+
commit-status-context: CLA test
6868
token: ${{ secrets.SANDBOX_CLA_TOKEN }}
6969
pr-token: ${{ secrets.SANDBOX_CLA_PR_TOKEN }}
7070
fork-token: ${{ secrets.SANDBOX_CLA_FORK_TOKEN }}

check-cla/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ conda contributor license agreement.
1717
| `fork-token` | GitHub token to create and push to a `repository` fork.<br>Fine-grained PAT: `administration: write; contents: write` | `${{ inputs.pr-token }}` |
1818
| `contributor-id` | Contributor ID to check for CLA signature. | `${{ github.event.pull_request.user.id || github.event.issue.user.id }}` |
1919
| `contributor-login` | Contributor login to check for CLA signature. | `${{ github.event.pull_request.user.login || github.event.issue.user.login }}` |
20-
| `commit-status-label` | Commit status label/identifier. | `CLA check` |
20+
| `commit-status-context` | Commit status label/identifier. | `CLA check` |
2121
| `comment-blurb` | Additional comment to add to PRs for contributors who have not signed the CLA. | |
2222

2323
## Sample Workflows

check-cla/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ inputs:
3737
contributor-login:
3838
description: Contributor login to check for CLA signature.
3939
default: ${{ github.event.pull_request.user.login || github.event.issue.user.login }}
40-
commit-status-label:
40+
commit-status-context:
4141
description: Commit status label/identifier.
4242
default: CLA check
4343
comment-blurb:
@@ -59,7 +59,7 @@ runs:
5959
uses: conda/actions/set-commit-status@8ff3faa82ad80f5c05d91c22bcd37d897f80ca46 # v25.1.1
6060
with:
6161
token: ${{ inputs.token }}
62-
context: ${{ inputs.commit-status-label }}
62+
context: ${{ inputs.commit-status-context }}
6363
description: Checking conda CLA...
6464
state: pending
6565

0 commit comments

Comments
 (0)