Skip to content

Commit

Permalink
Create sponsors.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DigitalBrainJS authored Aug 16, 2024
1 parent 9a091e4 commit c2e098a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflow/sponsors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# workflow triggers
name: Update Sponsors
on:
push:
branches: [ source ]
pull_request:
branches: [ source ]
workflow_dispatch:

# Allows external webhook trigger
repository_dispatch:
types:
- webhook
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v3
- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
############# TAG RELEASE ##############
- name: Update Readme.md
run: echo "Web hook test"

0 comments on commit c2e098a

Please sign in to comment.