Add script to fetch missing deployment logs (adds missing logs for worldchain) #95
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: Mark new PRs as Draft | |
# - Marks all newly opened pull requests as drafts | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
mark-new-PRs-as-draft: | |
name: Mark as draft | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Mark as draft | |
uses: voiceflow/[email protected] | |
with: | |
token: ${{ secrets.GIT_ACTIONS_BOT_PAT_CLASSIC }} |