-
-
Save KyMidd/43950aac2118e6bfde2d7616781c5f96 to your computer and use it in GitHub Desktop.
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: Action Name Goes Here | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: main | |
permissions: | |
id-token: write | |
contents: read | |
repository-projects: read | |
env: | |
var1: foo | |
var2: bar | |
jobs: | |
job-name: | |
name: Job Name | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Step Name | |
run: echo "👋 hi mom" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment