File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 34
34
# Add this step before the 'Post Merged PR to BlueSky' step
35
35
- name : Debug Secret Availability
36
36
run : |
37
- echo "BSKY_IDENTIFIER is set: ${{ secrets.BSKY_IDENTIFIER != '' }}"
38
- echo "BSKY_PASSWORD is set: ${{ secrets.BSKY_PASSWORD != '' }}"
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 }}
39
42
40
43
- name : Post Merged PR to BlueSky
41
44
uses : myConsciousness/bluesky-post@v5
44
47
text : ${{ format('{0} by {1}', github.event.pull_request.title, github.event.pull_request.user.login) }}
45
48
# Use the PR's HTML URL for the link preview
46
49
link-preview-url : ${{ github.event.pull_request.html_url }} # Use html_url, it's more standard
47
- identifier : ${{ secrets.BSKY_IDENTIFIER }}
48
- password : ${{ secrets.BSKY_PASSWORD }}
50
+ identifier : ${{ BSKY_IDENTIFIER }}
51
+ password : ${{ BSKY_PASSWORD }}
52
+ env :
53
+ BSKY_IDENTIFIER : ${{ secrets.BSKY_IDENTIFIER }}
54
+ BSKY_PASSWORD : ${{ secrets.BSKY_PASSWORD }}
49
55
50
56
# Job for posting when manually triggered
51
57
post_manually :
You can’t perform that action at this time.
0 commit comments