Skip to content

Commit

Permalink
chore: update org references (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: Michaël De Boey <[email protected]>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jul 7, 2023
1 parent c89aad8 commit 0ce09eb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Basic usage can be enabled simply by using the following.

```yaml
- name: 📝 Comment on related issues and pull requests
uses: mcansh/release-comment-action@0.2.0
uses: remix-run/release-comment-action@0.4.1
```
This covers a lot of use cases, even this repo uses this set up, however in a monorepo set up you may want to to follow a specific package (like `remix`, or `react-router`). In those situations the following can be used to filter on only the `remix` tag and only commits that affect the `./packages` directory.

```yaml
- name: 📝 Comment on related issues and pull requests
uses: mcansh/release-comment-action@0.2.0
uses: remix-run/release-comment-action@0.4.1
with:
DIRECTORY_TO_CHECK: "./packages"
PACKAGE_VERSION_TO_FOLLOW: "remix"
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Release Announcement Action"
description: "automatically comment on released pull requests and linked issues"
author: "mcansh"
author: "remix-run"
runs:
using: "node16"
main: "dist/index.js"
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11022,7 +11022,7 @@ let ISSUE_LABELS_TO_REMOVE = core.getInput("ISSUE_LABELS_TO_REMOVE");
// doing it the other way would be as follows
/**
- name: 📝 Comment on issues
uses: mcansh/release-comment-action
uses: remix-run/release-comment-action
env:
GH_TOKEN: ${{ github.token }}
with:
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ let ISSUE_LABELS_TO_REMOVE = core.getInput("ISSUE_LABELS_TO_REMOVE");
// doing it the other way would be as follows
/**
- name: 📝 Comment on issues
uses: mcansh/release-comment-action
uses: remix-run/release-comment-action
env:
GH_TOKEN: ${{ github.token }}
with:
Expand Down

0 comments on commit 0ce09eb

Please sign in to comment.