mirror of
https://github.com/dagger/dagger-for-github.git
synced 2025-12-31 20:59:43 +11:00
rename repo to dagger-for-github
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
9e6ff7eb45
commit
826af86330
7 changed files with 16 additions and 16 deletions
4
.github/CONTRIBUTING.md
vendored
4
.github/CONTRIBUTING.md
vendored
|
|
@ -7,14 +7,14 @@ to the public under the [project's open source license](LICENSE).
|
|||
|
||||
## Submitting a pull request
|
||||
|
||||
1. [Fork](https://github.com/dagger/dagger-action/fork) and clone the repository
|
||||
1. [Fork](https://github.com/dagger/dagger-for-github/fork) and clone the repository
|
||||
2. Configure and install the dependencies: `yarn install`
|
||||
3. Create a new branch: `git checkout -b my-branch-name`
|
||||
4. Make your changes
|
||||
5. Make sure the tests pass: `docker buildx bake test`
|
||||
6. Format code and build javascript artifacts: `docker buildx bake pre-checkin`
|
||||
7. Validate all code has correctly formatted and built: `docker buildx bake validate`
|
||||
8. Push to your fork and [submit a pull request](https://github.com/dagger/dagger-action/compare)
|
||||
8. Push to your fork and [submit a pull request](https://github.com/dagger/dagger-for-github/compare)
|
||||
9. Pat your self on the back and wait for your pull request to be reviewed and merged.
|
||||
|
||||
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
|
||||
|
|
|
|||
6
.github/SUPPORT.md
vendored
6
.github/SUPPORT.md
vendored
|
|
@ -1,8 +1,8 @@
|
|||
# Support [](https://isitmaintained.com/project/dagger/dagger-action)
|
||||
# Support [](https://isitmaintained.com/project/dagger/dagger-for-github)
|
||||
|
||||
## Reporting an issue
|
||||
|
||||
Please do a search in [open issues](https://github.com/dagger/dagger-action/issues?utf8=%E2%9C%93&q=) to see if the issue or feature request has already been filed.
|
||||
Please do a search in [open issues](https://github.com/dagger/dagger-for-github/issues?utf8=%E2%9C%93&q=) to see if the issue or feature request has already been filed.
|
||||
|
||||
If you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments). Use a reaction in place of a "+1" comment.
|
||||
|
||||
|
|
@ -21,7 +21,7 @@ File a single issue per problem and feature request.
|
|||
|
||||
The more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix.
|
||||
|
||||
You are now ready to [create a new issue](https://github.com/dagger/dagger-action/issues/new/choose)!
|
||||
You are now ready to [create a new issue](https://github.com/dagger/dagger-for-github/issues/new/choose)!
|
||||
|
||||
## Closure policy
|
||||
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
14
README.md
14
README.md
|
|
@ -1,15 +1,15 @@
|
|||

|
||||
|
||||
[](https://github.com/dagger/dagger-action/releases/latest)
|
||||
[](https://github.com/marketplace/actions/dagger-action)
|
||||
[](https://github.com/dagger/dagger-action/actions?workflow=test)
|
||||
[](https://codecov.io/gh/dagger/dagger-action)
|
||||
[](https://github.com/dagger/dagger-for-github/releases/latest)
|
||||
[](https://github.com/marketplace/actions/dagger-for-github)
|
||||
[](https://github.com/dagger/dagger-for-github/actions?workflow=test)
|
||||
[](https://codecov.io/gh/dagger/dagger-for-github)
|
||||
|
||||
## About
|
||||
|
||||
GitHub Action for [Dagger](https://dagger.io), a programmable deployment system.
|
||||
|
||||

|
||||

|
||||
|
||||
___
|
||||
|
||||
|
|
@ -41,7 +41,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
-
|
||||
name: Dagger
|
||||
uses: dagger/dagger-action@v1
|
||||
uses: dagger/dagger-for-github@v1
|
||||
with:
|
||||
age-key: ${{ secrets.DAGGER_AGE_KEY }}
|
||||
args: up
|
||||
|
|
@ -53,7 +53,7 @@ jobs:
|
|||
steps:
|
||||
-
|
||||
name: Install Dagger
|
||||
uses: dagger/dagger-action@v1
|
||||
uses: dagger/dagger-for-github@v1
|
||||
with:
|
||||
install-only: true
|
||||
-
|
||||
|
|
|
|||
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
|
@ -128,7 +128,7 @@ function install(version) {
|
|||
exports.install = install;
|
||||
function getLatestVersion() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const _http = new http.HttpClient('dagger-action');
|
||||
const _http = new http.HttpClient('dagger-for-github');
|
||||
const res = yield _http.get(`${s3URL}/latest_version`);
|
||||
return yield res.readBody().then(body => {
|
||||
return body.trim();
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "dagger-action",
|
||||
"name": "dagger-for-github",
|
||||
"description": "GitHub Action for Dagger, a programmable deployment system",
|
||||
"main": "lib/main.js",
|
||||
"scripts": {
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/dagger/dagger-action.git"
|
||||
"url": "git+https://github.com/dagger/dagger-for-github.git"
|
||||
},
|
||||
"keywords": [
|
||||
"actions",
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ export async function install(version: string): Promise<string> {
|
|||
}
|
||||
|
||||
async function getLatestVersion(): Promise<string> {
|
||||
const _http = new http.HttpClient('dagger-action');
|
||||
const _http = new http.HttpClient('dagger-for-github');
|
||||
const res = await _http.get(`${s3URL}/latest_version`);
|
||||
return await res.readBody().then(body => {
|
||||
return body.trim();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue