Skip to content

Commit bbeb174

Browse files
committed
Restructure repo
1 parent 125cea8 commit bbeb174

File tree

10 files changed

+32
-2
lines changed

10 files changed

+32
-2
lines changed

.github/workflows/slack.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Slack PR Notification
2+
on:
3+
# pull request target uses base and has access to secrets
4+
pull_request_target:
5+
types: [opened, reopened]
6+
7+
jobs:
8+
rfc-notify:
9+
name: RFC Notification
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check PR title
13+
id: check
14+
run: |
15+
if [[ "${{ github.event.pull_request.title }}" == *"RFC"* ]]; then
16+
echo "NOTIFY_SLACK=true" >> $GITHUB_ENV
17+
fi
18+
- name: Notify Slack
19+
if: env.NOTIFY_SLACK == 'true'
20+
uses: slackapi/slack-github-action@v1.25.0
21+
with:
22+
channel-id: "rc-test"
23+
slack-message: "${{ github.actor }} opened a new RFC: ${{ github.event.pull_request.title }}. URL: ${{ github.event.pull_request.html_url }}"
24+
env:
25+
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}

README.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ During 2024 the group will be focusing on ensuring that the community have a fri
1010
`Join the Slack`_ channel "open-source-wg" to participate in the discussions.
1111

1212
* `Meeting Notes`_
13+
* `RFCs`_
1314

14-
.. _`Meeting Notes`: meetings/notes.rst
15-
.. _`Join the Slack`: https://join.slack.com/t/uxlfoundation/shared_invite/zt-2b1tm2frp-GZY~JBngtXo5xRrcgFrV6Q
15+
.. _`RFCs`: rfc
16+
.. _`Meeting Notes`: meetings/notes/README.rst
17+
.. _`Join the Slack`: https://join.slack.com/t/uxlfoundation/shared_invite/zt-2b1tm2frp-GZY~JBngtXo5xRrcgFrV6Q
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

rfc/README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
===
2+
RFC
3+
===

0 commit comments

Comments
 (0)