diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec98ab4..534a71a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: types: [published] jobs: - update-git-tag: # Reason: + update-git-tag: # Reason: name: Update latest major git tag runs-on: ubuntu-20.04 steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 42117ad..6d1a128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,5 +4,11 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver]. +## v1.0.0 + +### Added + +- First action release + [keepachangelog]:https://keepachangelog.com/en/1.0.0/ [semver]:https://semver.org/spec/v2.0.0.html diff --git a/LICENSE b/LICENSE index 4570611..bff81e0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 https://github.com/jetexe +Copyright (c) 2022 https://github.com/gacts Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 7d1b2a7..696393c 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ jobs: - uses: actions/checkout@v3 - name: Run this action - uses: jetexe/run-and-post-run@v1 + uses: gacts/run-and-post-run@v1 with: run: echo "First run" post: echo "First post" - name: Run this action with only post - uses: jetexe/run-and-post-run@v1 + uses: gacts/run-and-post-run@v1 with: post: echo "Second post" ``` @@ -52,7 +52,7 @@ New versions releasing scenario: - Make required changes in the [changelog](CHANGELOG.md) file - Build the action distribution (`make build` or `yarn build`) -- Commit and push changes (including `dist` directory changes - this is important) into the `master` branch +- Commit and push changes (including `dist` directory changes - this is important) into the `main` branch - Publish new release using repo releases page (git tag should follow `vX.Y.Z` format) Major and minor git tags (`v1` and `v1.2` if you publish `v1.2.Z` release) will be updated automatically. @@ -68,18 +68,18 @@ If you find any action errors, please, [make an issue][link_create_issue] in the This is open-sourced software licensed under the [MIT License][link_license]. -[badge_build]:https://img.shields.io/github/actions/workflow/status/jetexe/run-and-post-run/tests.yml?branch=master&maxAge=30 -[badge_release_version]:https://img.shields.io/github/release/jetexe/run-and-post-run.svg?maxAge=30 -[badge_license]:https://img.shields.io/github/license/jetexe/run-and-post-run.svg?longCache=true -[badge_release_date]:https://img.shields.io/github/release-date/jetexe/run-and-post-run.svg?maxAge=180 -[badge_commits_since_release]:https://img.shields.io/github/commits-since/jetexe/run-and-post-run/latest.svg?maxAge=45 -[badge_issues]:https://img.shields.io/github/issues/jetexe/run-and-post-run.svg?maxAge=45 -[badge_pulls]:https://img.shields.io/github/issues-pr/jetexe/run-and-post-run.svg?maxAge=45 - -[link_build]:https://github.com/jetexe/run-and-post-run/actions -[link_license]:https://github.com/jetexe/run-and-post-run/blob/master/LICENSE -[link_issues]:https://github.com/jetexe/run-and-post-run/issues -[link_create_issue]:https://github.com/jetexe/run-and-post-run/issues/new -[link_pulls]:https://github.com/jetexe/run-and-post-run/pulls +[badge_build]:https://img.shields.io/github/actions/workflow/status/gacts/run-and-post-run/tests.yml?branch=main&maxAge=30 +[badge_release_version]:https://img.shields.io/github/release/gacts/run-and-post-run.svg?maxAge=30 +[badge_license]:https://img.shields.io/github/license/gacts/run-and-post-run.svg?longCache=true +[badge_release_date]:https://img.shields.io/github/release-date/gacts/run-and-post-run.svg?maxAge=180 +[badge_commits_since_release]:https://img.shields.io/github/commits-since/gacts/run-and-post-run/latest.svg?maxAge=45 +[badge_issues]:https://img.shields.io/github/issues/gacts/run-and-post-run.svg?maxAge=45 +[badge_pulls]:https://img.shields.io/github/issues-pr/gacts/run-and-post-run.svg?maxAge=45 + +[link_build]:https://github.com/gacts/run-and-post-run/actions +[link_license]:https://github.com/gacts/run-and-post-run/blob/main/LICENSE +[link_issues]:https://github.com/gacts/run-and-post-run/issues +[link_create_issue]:https://github.com/gacts/run-and-post-run/issues/new +[link_pulls]:https://github.com/gacts/run-and-post-run/pulls [community_issue]:https://github.com/orgs/community/discussions/26743 diff --git a/package.json b/package.json index 0f98461..a231e26 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/jetexe/run-and-post-run.git" + "url": "git+https://github.com/gacts/run-and-post-run.git" }, "keywords": [ "github", @@ -15,9 +15,9 @@ ], "license": "MIT", "bugs": { - "url": "https://github.com/jetexe/run-and-post-run/issues" + "url": "https://github.com/gacts/run-and-post-run/issues" }, - "homepage": "https://github.com/jetexe/run-and-post-run#readme", + "homepage": "https://github.com/gacts/run-and-post-run#readme", "dependencies": { "@actions/core": "^1.10.0", "@actions/exec": "^1.1.1"