* * Add GitHub url and GitHub Enterprise support * Update the GitHub action * Update build.yml Remove push command * Update the PR and remove the test mode * Delete build-pr.yml * Update README.md
21 lines
380 B
YAML
21 lines
380 B
YAML
name: Action CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master, main]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Verify action syntax
|
|
# The action should not publish any real changes, but should succeed.
|
|
uses: './'
|
|
with:
|
|
github_token: '${{ secrets.GITHUB_TOKEN }}'
|
|
branch: '${{ github.ref }}'
|