Skip to content

Commit

Permalink
fix: fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin committed Sep 25, 2024
1 parent 00452ca commit 38dcd02
Showing 1 changed file with 36 additions and 25 deletions.
61 changes: 36 additions & 25 deletions .github/workflows/contributor-card.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,44 @@
name: PR Merge Comment

on:
pull_request:
branches: [ master ]
on: [pull_request, push, issues]

jobs:
post-pr-opened-comment:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/checkout@v2

- name: Get and Format Username
run: |
formatted_username=$(echo "${{ github.event.pull_request.user.login }}" | tr '[:upper:]' '[:lower:]' | sed 's/ /-/g')
echo "FORMATTED_USERNAME=$formatted_username" >> $GITHUB_ENV
- name: Run a one-line script
run: echo Hello, world!

- name: Create Comment
uses: actions/github-script@v6
with:
script: |
const prUser = process.env.FORMATTED_USERNAME;
const url = `https://datahub-contributor-cards.vercel.app/${prUser}`;
const body = `![Image](downloaded_image.png)\n\n@${prUser} Thank you for opening a pull request!\nVisit your page here: [${url}](${url})`;
// Create a comment on the PR
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: body
});
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
# post-pr-opened-comment:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
#
# - name: Get and Format Username
# run: |
# formatted_username=$(echo "${{ github.event.pull_request.user.login }}" | tr '[:upper:]' '[:lower:]' | sed 's/ /-/g')
# echo "FORMATTED_USERNAME=$formatted_username" >> $GITHUB_ENV
#
# - name: Create Comment
# uses: actions/github-script@v6
# with:
# script: |
# const prUser = process.env.FORMATTED_USERNAME;
# const url = `https://datahub-contributor-cards.vercel.app/${prUser}`;
# const body = `![Image](downloaded_image.png)\n\n@${prUser} Thank you for opening a pull request!\nVisit your page here: [${url}](${url})`;
#
# // Create a comment on the PR
# await github.rest.issues.createComment({
# owner: context.repo.owner,
# repo: context.repo.repo,
# issue_number: context.payload.pull_request.number,
# body: body
# });

0 comments on commit 38dcd02

Please sign in to comment.