Merge remote-tracking branch 'origin' into blank-issue
This commit is contained in:
commit
e19ea12265
71 changed files with 3861 additions and 816 deletions
2
.github/PULL_REQUEST_TEMPLATE/bug_fix.md
vendored
2
.github/PULL_REQUEST_TEMPLATE/bug_fix.md
vendored
|
|
@ -6,7 +6,7 @@ about: Fix a bug in GitHub CLI
|
|||
|
||||
<!--
|
||||
Please make sure you read our contributing guidelines at
|
||||
https://github.com/cli/cli/blob/master/.github/CONTRIBUTING.md
|
||||
https://github.com/cli/cli/blob/trunk/.github/CONTRIBUTING.md
|
||||
before opening opening a pull request. Thanks!
|
||||
-->
|
||||
|
||||
|
|
|
|||
2
.github/workflows/go.yml
vendored
2
.github/workflows/go.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Set up Go 1.14
|
||||
uses: actions/setup-go@v2-beta
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.14
|
||||
|
||||
|
|
|
|||
7
.github/workflows/lint.yml
vendored
7
.github/workflows/lint.yml
vendored
|
|
@ -5,6 +5,11 @@ on:
|
|||
- "**.go"
|
||||
- go.mod
|
||||
- go.sum
|
||||
pull_request:
|
||||
paths:
|
||||
- "**.go"
|
||||
- go.mod
|
||||
- go.sum
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
@ -12,7 +17,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Set up Go 1.14
|
||||
uses: actions/setup-go@v2-beta
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.14
|
||||
|
||||
|
|
|
|||
7
.github/workflows/releases.yml
vendored
7
.github/workflows/releases.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Go 1.14
|
||||
uses: actions/setup-go@v2-beta
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.14
|
||||
- name: Generate changelog
|
||||
|
|
@ -44,6 +44,11 @@ jobs:
|
|||
token: ${{secrets.SITE_GITHUB_TOKEN}}
|
||||
- name: Publish documentation site
|
||||
if: "!contains(github.ref, '-')" # skip prereleases
|
||||
env:
|
||||
GIT_COMMITTER_NAME: cli automation
|
||||
GIT_AUTHOR_NAME: cli automation
|
||||
GIT_COMMITTER_EMAIL: noreply@github.com
|
||||
GIT_AUTHOR_EMAIL: noreply@github.com
|
||||
run: make site-publish
|
||||
- name: Move project cards
|
||||
if: "!contains(github.ref, '-')" # skip prereleases
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue