Skip to content

Commit

Permalink
Debug why Merlinoi's credentials are wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
pitag-ha committed Dec 7, 2023
1 parent cbc4daa commit 8ed7d3c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/fuzzy-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,22 @@ jobs:
matrix:
commit: ["merge_branch", "base_branch"]
steps:
- name: Debug if TOKEN exists
run: |
if [ -z $TOKEN ]; then
echo "TOKEN is empty"
else
echo "TOKEN exists."
fi
- name: Debug if secret exists
run: |
if [ -z ${{ secrets.MERLINOIS_PAT }} ]; then
echo "secret is empty"
else
echo "secret exists."
fi
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 8ed7d3c

Please sign in to comment.