Skip to content

fix: Fix GH Action workflow #8

fix: Fix GH Action workflow

fix: Fix GH Action workflow #8

Workflow file for this run

name: Test Action
on:
pull_request:
branches: ["main"]
jobs:
check-pr-is-updated:
runs-on: ubuntu-latest
name: Test if the PR is updated
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'check if the PR branch is updated or not'
id: check_pr_is_updated
uses: ./ # Uses an action in the root directory
# or use a released Github Action
# uses: osl-incubator/[email protected]
with:
remote_branch: 'origin/main'
pr_sha: ${{ github.event.pull_request.head.sha }}