6e7707e6df45b569fc5a97b7277dc900527a145d
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
First Interaction
An action for filtering pull requests (PRs) and issues from first-time contributors.
Breaking Changes in v3.0.0
Version 3.0.0 introduces breaking changes:
- If you're using a self-hosted runner, ensure it's on version v2.327.1 or later
When a first-time contributor opens a PR or issue, this action will add a comment to the PR or issue with a message of your choice. This action is useful for welcoming first-time contributors to your project and providing them with information about how to contribute effectively.
Usage
See action.yml
name: Greetings
on:
pull_request:
types:
- opened
issues:
types:
- opened
permissions:
issues: write
pull-requests: write
jobs:
greeting:
name: Greet First-Time Contributors
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v3
with:
issue-message: |
# Issue Message with Markdown
This is the message that will be displayed!
pr-message: |
# PR Message with Markdown
This is the message that will be displayed!
Description
Languages
TypeScript
80.3%
JavaScript
19.7%