Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to GitHub Actions and workflows to improve automation and streamline processes. The most important changes involve the addition of new workflows for CI and dependency installation, as well as the removal of outdated workflows.
New workflows:
.github/actions/install/action.yml
: Added a new composite action to install tools and dependencies, including pnpm and Node.js, and to runpnpm ci:install
..github/workflows/ci-first-contributor.yml
: Introduced a workflow to welcome first-time contributors by checking for their first interaction and sending personalized messages..github/workflows/ci-push-main.yml
: Created a new workflow to run on pushes to the main branch, which includes formatting code, committing changes, and triggering the mergebot.Removed outdated workflows:
.github/workflows/first-time-pr.yml
: Removed the workflow that checked for first-time PR merges and welcomed new contributors..github/workflows/format.yml
: Deleted the old formatting workflow that ran on pushes to the main branch..github/workflows/mergebot.yml
: Removed the standalone mergebot workflow.