Skip to content

Commit 7934105

Browse files
authored
[bugfix] adds back the welcome comment when a new member is merged (#994)
1 parent 23856aa commit 7934105

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/ecosystem-submission.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# Create PR
4343
- name: Commit changes and create pull request
4444
id: cpr
45-
uses: peter-evans/create-pull-request@v5
45+
uses: peter-evans/create-pull-request@v7
4646
with:
4747
commit-message: Submission - Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list.
4848
title: Add ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} to list.
@@ -60,7 +60,8 @@ jobs:
6060
cancel-in-progress: true
6161
if: >
6262
startsWith(github.event.issue.title, '[Submission]:')
63-
&& github.event.pull_request.merged == true
63+
&& github.event.action == 'closed'
64+
&& github.event.issue.state_reason == 'completed'
6465
&& contains(github.event.issue.labels.*.name, 'submission')
6566
runs-on: ubuntu-latest
6667
steps:
@@ -69,10 +70,14 @@ jobs:
6970
with:
7071
issue-number: ${{ github.event.issue.number }}
7172
body: |
72-
Hello @${{ github.event.issue.user.login }}! You joined the Qiskit ecosystem recently, here are some follow up actions you can take to make the most of the program:
73+
Hello @${{ github.event.issue.user.login }}! ${{ steps.parse-issue.outputs.SUBMISSION_NAME }} is now part of the Qiskit Ecosystem. Here are some follow up actions you can take to get the most out of the program:
7374
74-
:speech_balloon: Join other Qiskit ecosystem developers in the [Slack channel #qiskit-ecosystem](https://qiskit.slack.com/archives/C04RHE56N93) (if you are not in the Qiskit workspace yet, [sign up](https://qisk.it/join-slack))
75+
:speech_balloon: Join other Qiskit ecosystem developers in the Slack channel #qiskit-ecosystem at https://qiskit.slack.com/archives/C04RHE56N93. If you are not in the Qiskit workspace yet, sign up at https://qisk.it/join-slack
7576
76-
:stethoscope: Get support integrating with Qiskit, including updating your project to Qiskit 1.0, using our [documentation theme](https://github.com/Qiskit/qiskit_sphinx_theme), and integrating with the transpiler plugin system. Reach out to Frank Harkins via [email](mailto:[email protected]) for any questions or suggestions about working with Qiskit.
77+
:white_check_mark: Use the Qiskit theme for your documentation at https://github.com/Qiskit/qiskit_sphinx_theme
7778
78-
It's great having you as a part of the ecosystem!
79+
:stethoscope: Keep an eye on the criteria compliance
80+
81+
:purple_heart: Add the Qiskit Ecosystem badge to your README
82+
83+
It is great to have you in the ecosystem.

0 commit comments

Comments
 (0)