Compare commits

...
14 Commits
Author SHA1 Message Date
Ben De St Paer-GotchandGitHub 50a5d90d4c Update README.md 2025-06-02 10:30:48 +01:00
Ben De St Paer-GotchandGitHub 335e505279 Update README.md 2025-06-02 10:28:56 +01:00
Ben De St Paer-GotchandGitHub 31ce3d36fe Update README.md 2025-06-02 10:26:52 +01:00
Nick Alteen d94ed8e502 Merge branch 'master' 2025-02-19 12:13:48 -05:00
Nick AlteenandGitHub 6de062d9b6 Merge pull request #16 from simonw/patch-1
Demonstrate |- multiline YAML string in README
2025-02-19 12:10:44 -05:00
Nick AlteenandGitHub 41ddf9c831 Merge pull request #36 from tacaswell/doc_complete_example
DOC: adjust the example to show a full yaml file
2024-02-22 12:02:54 -05:00
Nick AlteenandGitHub fe1cfc10c8 Merge branch 'main' into doc_complete_example 2024-02-22 12:02:46 -05:00
Nick AlteenandGitHub de709c3f9f Merge pull request #75 from Alirezaaraby/patch-2
Update README.md
2024-02-22 11:54:34 -05:00
Nick AlteenandGitHub c1f2042186 Merge pull request #274 from TheGuptaEmpire/first-contributor
Installed @actions/core
2024-02-22 11:52:16 -05:00
Allan GuigouandGitHub 34f15e814f Merge pull request #288 from actions/allanguigou/bump-minor-version
Bump Version to 1.3.0
2023-11-29 09:07:43 -05:00
SG 0ae396c32e installed @actions/core 2023-09-25 22:45:46 +05:30
AlirezaarabiandGitHub 668eef3c29 Update README.md 2022-04-07 04:47:22 -07:00
Thomas A Caswell 6dc4929aa5 DOC: adjust the example to show a full yaml file 2020-12-22 17:20:57 -05:00
Simon WillisonandGitHub 8c5a0e4aad Demonstrate |- multiline YAML string in README 2019-11-27 15:32:50 -08:00
7 changed files with 58 additions and 23 deletions
+1
View File
@@ -25,3 +25,4 @@ jobs:
If you are fixing a bug, please reference the issue number in the description. If you are fixing a bug, please reference the issue number in the description.
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first. If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.
+34 -4
View File
@@ -2,19 +2,49 @@
An action for filtering pull requests and issues from first-time contributors. An action for filtering pull requests and issues from first-time contributors.
# Usage ### Note
Thank you for your interest in this GitHub action, however, right now we are not taking contributions.
We continue to focus our resources on strategic areas that help our customers be successful while making developers' lives easier. While GitHub Actions remains a key part of this vision, we are allocating resources towards other areas of Actions and are not taking contributions to this repository at this time. The GitHub public roadmap is the best place to follow along for any updates on features were working on and what stage theyre in.
We are taking the following steps to better direct requests related to GitHub Actions, including:
1. We will be directing questions and support requests to our [Community Discussions area](https://github.com/orgs/community/discussions/categories/actions)
2. High Priority bugs can be reported through Community Discussions or you can report these to our support team https://support.github.com/contact/bug-report.
3. Security Issues should be handled as per our [security.md](security.md)
We will still provide security updates for this project and fix major breaking changes during this time.
You are welcome to still raise bugs in this repo.
## Usage
See [action.yml](action.yml) See [action.yml](action.yml)
```yaml ```yaml
name: Greetings
on: [pull_request, issues]
jobs:
greeting:
runs-on: ubuntu-latest
steps: steps:
- uses: actions/first-interaction@v1 - uses: actions/first-interaction@v1
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: '# Message with markdown.\nThis is the message that will be displayed on users' first issue.' issue-message: |
pr-message: 'Message that will be displayed on users' first pr. Look, a `code block` for markdown.' # Message with markdown.
This is the message that will be displayed on users' first issue.
pr-message: |
Message that will be displayed on users' first pr.
Look, a `code block` for markdown.
``` ```
# License ## License
The scripts and documentation in this project are released under the [MIT License](LICENSE) The scripts and documentation in this project are released under the [MIT License](LICENSE)
+1
View File
@@ -12,3 +12,4 @@ inputs:
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
+4 -1
View File
@@ -59,5 +59,8 @@
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
}, },
"exclude": ["node_modules", "**/*.test.ts"] "exclude": [
"node_modules",
"**/*.test.ts"
]
} }