Add gumroad extension #22701
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Bot | |
on: | |
pull_request_target: | |
paths: | |
- "extensions/**" | |
branches: [main, master] | |
jobs: | |
pr-bot: | |
if: github.repository == 'raycast/extensions' | |
name: "PR Bot" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get changed extensions | |
id: get_changed_extensions | |
uses: raycast/github-actions/[email protected] | |
with: | |
github_event_name: ${{ github.event_name }} | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Setup Bot | |
run: bun create github.com/raycast/github-action-bot | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.RAYCAST_BOT_API_ACCESS_TOKEN }} | |
- name: Run bot | |
run: | | |
cd github-action-bot | |
bun run index.ts | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.RAYCAST_BOT_API_ACCESS_TOKEN }} | |
SCRIPT: "scripts/bots/pr-bot.ts" | |
CHANGED_EXTENSIONS: ${{ steps.get_changed_extensions.outputs.paths }} | |
- name: Notify Failure to Slack | |
if: failure() | |
uses: raycast/github-actions/slack-send@master | |
with: | |
webhook: ${{ secrets.SLACK_RELEASE_CHANNEL_WEBHOOK_URL }} | |
color: "danger" | |
text: | | |
:no_entry_sign: ${env.GITHUB_WORKFLOW} has failed | |
<${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}|Action logs> | <${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/commit/${ env.GITHUB_SHA }|Commit: ${ env.GITHUB_SHA.substr(0,8) }> |