2021-10-01 23:01:53 +03:00
|
|
|
# Expands any raw pasted link in comments. Useful so people know what they're clicking
|
|
|
|
name: 🎯 Unfurl Links
|
|
|
|
on:
|
|
|
|
issues:
|
2021-10-03 02:09:24 +03:00
|
|
|
types: [opened]
|
2021-10-01 23:01:53 +03:00
|
|
|
issue_comment:
|
2021-10-03 02:09:24 +03:00
|
|
|
types: [created]
|
2021-10-01 23:01:53 +03:00
|
|
|
pull_request:
|
2021-10-03 02:09:24 +03:00
|
|
|
types: [opened]
|
2021-10-01 23:01:53 +03:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: wow-actions/unfurl-links@v1
|
|
|
|
with:
|
2021-11-07 18:33:45 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
2021-10-01 23:01:53 +03:00
|
|
|
raw: true
|