Skip to content

Commit

Permalink
base commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BenValentim committed Apr 4, 2024
1 parent c98d8b3 commit 76cbdb1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Call consume repository

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
env:
POKEMON: ${{ secrets.POKEMON }}
LEVEL: ${{ secrets.LEVEL }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Repository Dispatch
uses: QuasarwayGit/workflow-consume@main
with:
client-payload: |-
{
"POKEMON": "${{ env.POKEMON }}",
"LEVEL": "${{ env.LEVEL }}
}

0 comments on commit 76cbdb1

Please sign in to comment.