Skip to content

chore: Update go.mod to include github.com/qustavo/sqlhooks/v2 v2.1.0 #8

chore: Update go.mod to include github.com/qustavo/sqlhooks/v2 v2.1.0

chore: Update go.mod to include github.com/qustavo/sqlhooks/v2 v2.1.0 #8

Workflow file for this run

name: Receive PR
# read-only repo token
# no access to secrets
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
echo ${{ github.event.pull_request.head.sha }} > ./pr/SHA
- uses: actions/upload-artifact@v2
with:
name: pr
path: pr/