Skip to content

here's a test issue #21

here's a test issue

here's a test issue #21

name: Discourse Update
on:
issues:
types: [opened, edited]
jobs:
update_discourse:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Get Issue Details
id: issue_details
run: |
ISSUE_TITLE="${{ github.event.issue.title }}"
ISSUE_BODY="${{ github.event.issue.body }}"
ISSUE_AUTHOR="${{ github.event.issue.user.login }}"
ISSUE_STATUS="${{ github.event.issue.state }}"
- name: Fetch CSRF Token
id: csrf_token
run: |
CSRF_TOKEN=$(curl -s https://goodbids.discourse.group/session/csrf.json | jq -r .csrf)
- name: Post Update to Discourse
run: |
JSON_DATA="${{ env.JSON_DATA }}"
CSRF_TOKEN="${{ env.CSRF_TOKEN }}"
curl -X POST "https://goodbids.discourse.group/posts.json" \
-H "Content-Type: application/json" \
-H "Api-Key: ${{ secrets.DISCOURSE_UPDATE_SECRET }}" \
-H "Api-Username: jaspercroome" \
-H "X-CSRF-Token: $CSRF_TOKEN" \
-d '{
"title": "$ISSUE_TITLE",
"raw": "$ISSUE_BODY",
"category": "tech-backlog"
}'