Skip to content

Commit

Permalink
Fix typo in cla-check workflow (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
beeankha authored Oct 10, 2023
1 parent b92bbab commit 344cbc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion check-cla/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# (default: conda-bot/infrastructure)
cla_fork:
# [required]
# Token for opening singee PR in the provided `cla_repo`
# Token for opening signee PR in the provided `cla_repo`
# (`pull_request: write` for fine-grained PAT; `repo` and `workflow` for classic PAT)
cla_token:
# Git-format author/committer to use for pull request commits
Expand Down
8 changes: 4 additions & 4 deletions check-cla/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ inputs:
default: conda-bot/infrastructure
cla_token:
description: >-
Token for opening singee PR in `cla_fork`
Token for opening signee PR in `cla_fork`
(`pull_request: write` for fine-grained PAT; `repo` and `workflow` for classic PAT)
required: true
cla_author:
Expand Down Expand Up @@ -116,7 +116,7 @@ runs:
labels: ${{ inputs.label }}

# if unsigned, checkout cla_repo
- name: Clone CLA singee repo
- name: Clone CLA signee repo
uses: actions/checkout@v4
if: steps.metadata.outputs.has_signed == 'false'
with:
Expand Down Expand Up @@ -146,10 +146,10 @@ runs:
token: ${{ inputs.cla_token }}
branch: cla-${{ steps.metadata.outputs.contributor }}
delete-branch: true
commit-message: Adding CLA singee ${{ steps.metadata.outputs.contributor }}
commit-message: Adding CLA signee ${{ steps.metadata.outputs.contributor }}
author: ${{ inputs.cla_author }}
committer: ${{ inputs.cla_author }}
title: Adding CLA singee ${{ steps.metadata.outputs.contributor }}
title: Adding CLA signee ${{ steps.metadata.outputs.contributor }}
body: |
Adding CLA signee @${{ steps.metadata.outputs.contributor }}
Expand Down

0 comments on commit 344cbc2

Please sign in to comment.