Skip to content

Commit

Permalink
🔥 Emoji signature! 🌎 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuleatt authored Sep 25, 2020
1 parent ebb6ba7 commit 03db527
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}"
expires: 30d
expires: 14d
projectId: action-hosting-deploy-demo
entryPoint: "./demo"
env:
Expand Down
2 changes: 1 addition & 1 deletion bin/action.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/postOrUpdateComment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function postOrUpdateComment(
...commentInfo,
body:
commentMarkdown +
"\n\n<sub>[Firebase Hosting GitHub Action](https://github.com/marketplace/actions/deploy-to-firebase-hosting)</sub>",
"\n\n<sub>🔥 via [Firebase Hosting GitHub Action](https://github.com/marketplace/actions/deploy-to-firebase-hosting) 🌎</sub>",
};

startGroup(`Updating PR comment`);
Expand All @@ -49,7 +49,7 @@ export async function postOrUpdateComment(
const c = comments[i];
if (
c.user.type === "Bot" &&
/<sub>[\s\n]*\[Firebase Hosting GitHub Action/.test(c.body)
/<sub>[\s\n]*🔥 via \[Firebase Hosting GitHub Action/.test(c.body)
) {
commentId = c.id;
break;
Expand Down

0 comments on commit 03db527

Please sign in to comment.