@@ -31,14 +31,11 @@ jobs:
31
31
runs-on : ubuntu-latest
32
32
steps :
33
33
34
- # # Add this step before the 'Post Merged PR to BlueSky' step
35
- # - name: Debug Secret Availability
36
- # run: |
37
- # echo "BSKY_IDENTIFIER is set: ${{ BSKY_IDENTIFIER != '' }}"
38
- # echo "BSKY_PASSWORD is set: ${{ BSKY_PASSWORD != '' }}"
39
- # env:
40
- # BSKY_IDENTIFIER: ${{ secrets.BSKY_IDENTIFIER }}
41
- # BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }}
34
+ # Add this step before the 'Post Merged PR to BlueSky' step
35
+ - name : Debug Secret Availability
36
+ run : |
37
+ echo "BSKY_IDENTIFIER is set: ${{ secrets.BSKY_IDENTIFIER != '' }}"
38
+ echo "BSKY_PASSWORD is set: ${{ secrets.BSKY_PASSWORD != '' }}"
42
39
43
40
- name : Post Merged PR to BlueSky
44
41
uses : myConsciousness/bluesky-post@v5
47
44
text : ${{ format('{0} by {1}', github.event.pull_request.title, github.event.pull_request.user.login) }}
48
45
# Use the PR's HTML URL for the link preview
49
46
link-preview-url : ${{ github.event.pull_request.html_url }} # Use html_url, it's more standard
50
- identifier : $BSKY_IDENTIFIER
51
- password : $BSKY_PASSWORD
47
+ identifier : ${{ secrets. BSKY_IDENTIFIER }}
48
+ password : ${{ secrets. BSKY_PASSWORD }}
52
49
env :
53
50
BSKY_IDENTIFIER : ${{ secrets.BSKY_IDENTIFIER }}
54
51
BSKY_PASSWORD : ${{ secrets.BSKY_PASSWORD }}
59
56
if : github.event_name == 'workflow_dispatch'
60
57
runs-on : ubuntu-latest
61
58
steps :
59
+
60
+ # Add this step before the 'Post Merged PR to BlueSky' step
61
+ - name : Debug Secret Availability
62
+ run : |
63
+ echo "BSKY_IDENTIFIER is set: ${{ secrets.BSKY_IDENTIFIER != '' }}"
64
+ echo "BSKY_PASSWORD is set: ${{ secrets.BSKY_PASSWORD != '' }}"
65
+
62
66
- name : Post Manually to BlueSky
63
67
uses : myConsciousness/bluesky-post@v5
64
68
with :
0 commit comments