Skip to content
Merged

1.0.0 #174

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,13 @@ 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 }}
Comment on lines -22 to -26
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added this in #167, but it doesn't seem to be intended to run automatically in CI, since it fails for the GitHub Actions user for example.


all-jobs-completed:
name: All jobs completed
runs-on: ubuntu-latest
needs:
- lint-workflows
- build-lint-test
- test-checkout-and-setup
- test-add-team-label
outputs:
PASSED: ${{ steps.set-output.outputs.PASSED }}
steps:
Expand Down
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Loading