Skip to content

Commit

Permalink
Update cheatfinder.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
appleicat authored Jan 4, 2025
1 parent eb93907 commit 17d12ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cheatfinder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git branch ${{ inputs.start }}:${{ inputs.end }}:${{ inputs.alphabet }}
git checkout ${{ inputs.start }}:${{ inputs.end }}:${{ inputs.alphabet }}
git branch ${{ inputs.start }}-${{ inputs.end }}-${{ inputs.alphabet }}
git checkout ${{ inputs.start }}-${{ inputs.end }}-${{ inputs.alphabet }}
git add data
git commit --message="[action] ${{ inputs.start }}:${{ inputs.end }}:${{ inputs.alphabet }}"
git push --set-upstream origin ${{ inputs.start }}:${{ inputs.end }}:${{ inputs.alphabet }}
gh pr create --title="[action] ${{ inputs.start }}:${{ inputs.end }}:${{ inputs.alphabet }}" --body="start:${{ inputs.start }} end:${{ inputs.end }} alphabet:${{ inputs.alphabet }}" --base="main" --head="${{ inputs.start }}:${{ inputs.end }}:${{ inputs.alphabet }}"
git commit --message="[action] ${{ inputs.start }}-${{ inputs.end }}-${{ inputs.alphabet }}"
git push --set-upstream origin ${{ inputs.start }}-${{ inputs.end }}-${{ inputs.alphabet }}
gh pr create --title="[action] ${{ inputs.start }}-${{ inputs.end }}-${{ inputs.alphabet }}" --body="start:${{ inputs.start }} end:${{ inputs.end }} alphabet:${{ inputs.alphabet }}" --base="main" --head="${{ inputs.start }}-${{ inputs.end }}-${{ inputs.alphabet }}"
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit 17d12ff

Please sign in to comment.