diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a889538..990b6da8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,12 +19,6 @@ jobs: name: Test checkout-and-setup uses: ./.github/workflows/test-checkout-and-setup.yml - test-add-team-label: - name: Test add-team-label - uses: ./.github/workflows/test-add-team-label.yml - secrets: - TEAM_LABEL_TOKEN: ${{ secrets.TEAM_LABEL_TOKEN }} - all-jobs-completed: name: All jobs completed runs-on: ubuntu-latest @@ -32,7 +26,6 @@ jobs: - lint-workflows - build-lint-test - test-checkout-and-setup - - test-add-team-label outputs: PASSED: ${{ steps.set-output.outputs.PASSED }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index b7230876..f16c1d94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,4 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -[Unreleased]: https://github.com/MetaMask/github-tools/ +## [1.0.0] + +### Added + +- Initial release of `github-tools` ([#174](https://github.com/MetaMask/github-tools/pull/174)) + - `github-tools` was previously used by referencing commit hashes, but this is no longer recommended. + +### Changed + +- **BREAKING:** Migrate all reusable workflows to composite actions ([#164](https://github.com/MetaMask/github-tools/pull/164), [#166](https://github.com/MetaMask/github-tools/pull/166), [#167](https://github.com/MetaMask/github-tools/pull/167), [#168](https://github.com/MetaMask/github-tools/pull/168), [#169](https://github.com/MetaMask/github-tools/pull/169)) + - All actions are now in the `.github/actions` folder. + - Instead of passing secrets, actions now use inputs for things like tokens. + - The `github-tools-version` input of some workflows was removed, since the actions can now determine which version to use automatically. + - Some inputs were renamed for consistency across actions. +- Bump `actions/checkout` and `actions/setup-node` to `v6` ([#173](https://github.com/MetaMask/github-tools/pull/173)) + +[Unreleased]: https://github.com/MetaMask/github-tools/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/MetaMask/github-tools/releases/tag/v1.0.0 diff --git a/package.json b/package.json index 752d8cea..e0440082 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/github-tools", - "version": "0.0.0", + "version": "1.0.0", "private": true, "description": "Tools for interacting with the GitHub API to do metrics gathering", "repository": {