diff --git a/README.md b/README.md index ebeb2d0..2af46f4 100644 --- a/README.md +++ b/README.md @@ -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" diff --git a/action.yml b/action.yml index fee050a..de5dea9 100644 --- a/action.yml +++ b/action.yml @@ -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" diff --git a/dist/index.js b/dist/index.js index 13678c4..d90bc50 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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: diff --git a/src/index.ts b/src/index.ts index 42369d4..7e81265 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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: