We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f4fc36 commit 9f4ced5Copy full SHA for 9f4ced5
.github/workflows/ci.yml
@@ -26,7 +26,19 @@ jobs:
26
git config user.name snapshots
27
git config user.email snapshots@users.noreply.github.com
28
git status
29
+ # debug https://github.com/tekumara/python-typed-template/issues/126
30
+ git ls-remote
31
git add .
32
if git commit -m "chore: update snapshots"; then
33
git push
34
fi
35
+ - name: Check branch name
36
+ run: |
37
+ BRANCH_NAME="${{ github.head_ref }}"
38
+ if [[ "$BRANCH_NAME" == *"dependabot"* ]]; then
39
+ echo "Fail to allow debugging"
40
+ exit 1
41
+ fi
42
+ - name: Start sshx session on failed manual run or retry
43
+ if: ${{ failure() && (github.event_name == 'workflow_dispatch' || github.run_attempt > 1) }}
44
+ run: curl -sSf https://sshx.io/get | sh && sshx
0 commit comments