Refactor messages in YAML files for improved readability and updated … #4
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: Upload draft | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
upload-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: Upload Quest | |
uses: trywilco/uploadQuestAction@main | |
with: | |
quest-editor-user-token: ${{ secrets.QUESTS_EDITOR_TOKEN }} | |
quest-editor-user-email: [email protected] |