Compare commits
12
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b77c0b6ce5 | ||
|
|
abfafb927f | ||
|
|
922ebefddc | ||
|
|
2bed546ab6 | ||
|
|
8cf67b3daa | ||
|
|
fdb1a90cd0 | ||
|
|
d82fba7861 | ||
|
|
b32f4db973 | ||
|
|
a4712be8a5 | ||
|
|
0a96001175 | ||
|
|
e5194a7cd8 | ||
|
|
092b199c45 |
+1
-1
@@ -1 +1 @@
|
||||
* @actions/reviewers
|
||||
* @actions/actions-experience
|
||||
|
||||
@@ -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
@@ -1,4 +1,4 @@
|
||||
FROM golang:1.14
|
||||
FROM golang:1.16
|
||||
|
||||
ENV GO111MODULE=on
|
||||
WORKDIR /go/src/github.com/actions/actions-sync
|
||||
|
||||
@@ -11,7 +11,7 @@ This is a standalone Go tool to allow you to sync from [GitHub](https://www.gith
|
||||
* Build status: 
|
||||
|
||||
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
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user