Skip to content

feat: Add workflows

feat: Add workflows #3

Workflow file for this run

name: pull-request
on:
pull_request:
permissions:
contents: read # This is required for actions/checkout
id-token: write
env:
AWS_REGION: "us-east-1"
jobs:
job-1:
name: Pull request jobs
runs-on: ubuntu-latest
steps:

Check failure on line 16 in .github/workflows/pull_request.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull_request.yaml

Invalid workflow file

You have an error in your yaml syntax on line 16
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Print PR Title
run: echo "Pull Request Title is ${{ github.event.pull_request.title }}"