Skip to content

Add functionality to import job and workflow job templates #5

Add functionality to import job and workflow job templates

Add functionality to import job and workflow job templates #5

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build