Github Actions
name: Example Workflow
on:
push:
branches:
- main
jobs:
example-job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use GitHub Token in the workflow
run: echo ${{ secrets.GITHUB_TOKEN }}最后更新于