Skip to content

Added "remember me" to the signup and signin page connecting it to the local storage database for user authentication. #497

Added "remember me" to the signup and signin page connecting it to the local storage database for user authentication.

Added "remember me" to the signup and signin page connecting it to the local storage database for user authentication. #497

name: Post-PR Merge Thank You
on:
pull_request_target:
types: [closed] # Trigger when a PR is closed
permissions:
issues: write
pull-requests: write
jobs:
post_merge_message:
if: github.event.pull_request.merged == true # Only run if the PR was merged
runs-on: ubuntu-latest
steps:
- name: Post thank you message
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }} # Ensure token is used
script: |
const prNumber = context.payload.pull_request.number;
const owner = context.repo.owner;
const repo = context.repo.repo;
// Post a thank you message upon PR merge
await github.rest.issues.createComment({
owner: owner,
repo: repo,
issue_number: prNumber,
body: `πŸŽ‰πŸŽ‰ Thank you for your contribution! Your PR #${prNumber} has been merged! πŸŽ‰πŸŽ‰`
});