Go to file
cupcakearmy b38b874a2c
cleanup
2022-12-08 16:00:30 +01:00
src update deps and optimize dockerfile 2022-12-08 15:57:33 +01:00
.dockerignore update deps and optimize dockerfile 2022-12-08 15:57:33 +01:00
.gitignore ignore secrets 2020-12-13 16:53:03 +01:00
Dockerfile update deps and optimize dockerfile 2022-12-08 15:57:33 +01:00
LICENSE Create LICENSE 2020-12-13 16:34:22 +01:00
Pipfile update deps and optimize dockerfile 2022-12-08 15:57:33 +01:00
Pipfile.lock update deps and optimize dockerfile 2022-12-08 15:57:33 +01:00
README.md Update README.md 2021-10-27 13:49:59 +02:00
action.yml cleanup 2022-12-08 16:00:30 +01:00

README.md

Confluence Markdown Sync Action

This Github Action serves the purpose of copying the contents of a Markdown .md file to a Confluence Cloud Page.

Getting Started

# .github/workflows/my-workflow.yml
on: [push]

jobs:
  dev:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - uses: cupcakearmy/confluence-markdown-sync@v1.0.1
        with:
          from: './README.md'
          to: '123456' # The confluence page id where to write the output
          cloud: <my-confluence-cloud-id>
          user: <my.user@example.org>
          token: <my-token>

Authentication

Uses basic auth for the rest api.

  • cloud: The ID can be found by looking at yout confluence domain: https://xxx.atlassian.net/...

  • user: The user that generated the access token

  • token: You can generate the token here. Link to Docs

  • to: The page ID can be found by simply navigating to the page where you want the content to be postet to and looke at the url. It will look something like this: https://<cloud-id>.atlassian.net/wiki/spaces/<space>/pages/<page-id>/<title>

Using secrets

It's higly reccomended that you use secrets!

To use them you need them to specify them before in your repo. Docs

The you can use them in any input field.

# .github/workflows/my-workflow.yml
# ...
token: ${{ secrets.token }}

Development

  1. Clone the repo
  2. Install act
  3. Create the same config in the repo folder as in the getting started section above.
  4. Change uses: cupcakearmy/confluence-markdown-sync -> uses: ./
  5. Create an example markdown file Some.md and set it in the config from: './Some.md'
  6. Run locally act -b

With secrets

You can simply create a .secrets file and specify it to act.

TOKEN=abc123
# .github/workflows/dev.yml
# ...
token: ${{ secrets.token }}
act -b --secret-file .secrets