Compare commits

...
Author SHA1 Message Date
Ajaykn-mac b77c0b6ce5 update go version to 1.16 to fix the CI build
licenced / Licences Check (push) Has been cancelled
2022-01-08 01:13:58 +09:00
ajaykn abfafb927f Merge pull request #17 from HollowMan6/patch-1
Fix typo
2021-02-16 01:57:06 +09:00
Hollow Man 922ebefddc Fix typo
seperate -> separate
2021-02-15 15:08:23 +08:00
Josh Gross 2bed546ab6 Merge pull request #16 from lowply/patch-1 2021-02-13 11:31:10 -05:00
Sho MizutaniandJosh Gross 8cf67b3daa Update README.md
Co-authored-by: Josh Gross <[email protected]>
2021-02-14 00:51:03 +09:00
Sho Mizutani fdb1a90cd0 Mention the workflow scope 2021-02-12 14:03:58 +09:00
Josh Gross d82fba7861 Merge pull request #13 from actions/joshmgross/update-codeowners
Use actions-experience for CODEOWNERS
2020-12-09 11:33:50 -05:00
Josh Gross b32f4db973 Use actions-experience for CODEOWNERS 2020-12-07 13:31:46 -05:00
Andy McKay a4712be8a5 Merge pull request #10 from pjquirk/patch-1
Fix a spelling mistake
2020-11-13 07:28:58 -08:00
Chris Sidi 0a96001175 Merge pull request #11 from thboop/main
Swap to environment files
2020-09-30 10:47:25 -04:00
Thomas Boop e5194a7cd8 swap to environment file 2020-09-28 17:23:10 -04:00
PJ Quirk 092b199c45 Fix a spelling mistake 2020-09-25 15:31:52 -04:00
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
* @actions/reviewers
* @actions/actions-experience
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
with:
go-version: 1.14
- name: Set CURRENT_TAG
run: echo ::set-env name=GORELEASER_CURRENT_TAG::${GITHUB_REF#refs/tags/}
run: echo "GORELEASER_CURRENT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v1
with:
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.14
FROM golang:1.16
ENV GO111MODULE=on
WORKDIR /go/src/github.com/actions/actions-sync
+2 -2
View File
@@ -11,7 +11,7 @@ This is a standalone Go tool to allow you to sync from [GitHub](https://www.gith
* Build status: ![Actions Sync Status](https://github.com/actions/actions-sync/workflows/CI/badge.svg)
It is designed to work when:
* The GitHub Enterprise instance is seperate from the rest of the internet.
* The GitHub Enterprise instance is separate from the rest of the internet.
* The GitHub Enterprise instance is connected to the rest of the internet.
## Connected instances
@@ -104,7 +104,7 @@ When no machine has access to both the public internet and the GHES instance:
## Destination token scopes
When creating a personal access token include the `repo` scope. Include the `site_admin` scope (optional) if you want organizations to be created as necessary.
When creating a personal access token include the `repo` and `workflow` scopes. Include the `site_admin` scope (optional) if you want organizations to be created as necessary.
## Contributing
+1 -1
View File
@@ -10,7 +10,7 @@ type CommonFlags struct {
}
func (f *CommonFlags) Init(cmd *cobra.Command) {
cmd.Flags().StringVar(&f.CacheDir, "cache-dir", "", "Directory containing the repopositories cache created by the `pull` command")
cmd.Flags().StringVar(&f.CacheDir, "cache-dir", "", "Directory containing the repositories cache created by the `pull` command")
_ = cmd.MarkFlagRequired("cache-dir")
cmd.Flags().StringVar(&f.RepoName, "repo-name", "", "Single repository name to pull")