Skip to content

Commit

Permalink
chore: validate draft
Browse files Browse the repository at this point in the history
  • Loading branch information
darmalovan committed Nov 20, 2024
1 parent 0c3d45a commit 25740b3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/validate-draft.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Validate draft
on:
pull_request:

jobs:
validate-draft:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}

- name: Validate Quest
uses: trywilco/uploadQuestAction@main
with:
quest-editor-user-token: ${{ secrets.QUESTS_EDITOR_TOKEN }}
quest-editor-user-email: [email protected]
only-validate: true

0 comments on commit 25740b3

Please sign in to comment.