No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-03-23 06:11:32 -06:00
.github/workflows Deleted .github/workflows/rebase.yml 2025-03-23 06:11:32 -06:00
.gitignore Initial commit. 2021-05-07 18:22:18 -04:00
.remarkrc.json Update and rename .remarkrc.yml to .remarkrc.json 2021-05-17 19:36:18 -04:00
.whitesource Added .whitesource 2021-07-02 12:52:34 -04:00
action.yml Updated action.yml 2022-03-18 05:47:55 -04:00
CODE_OF_CONDUCT.md Added CODE_OF_CONDUCT.md 2021-07-02 16:43:52 -04:00
CONTRIBUTING.md Initial commit. 2021-05-07 18:22:18 -04:00
HISTORY.md Upgraded to v3 (#82) 2022-03-18 05:26:29 -04:00
LICENSE Initial commit. 2021-05-07 18:22:18 -04:00
plugins.txt Initial commit. 2021-05-07 18:22:18 -04:00
README.md Updated README.md 2023-08-24 05:29:45 +00:00

Codacy Badge CI Update release version. Public workflows that use this action.

Ubuntu Mac OS Windows

remark

Want a cool Table of Contents for your markdown and also auto sync changes each time you make edits using this action enables the best of both worlds.

...
    steps:
      - uses: actions/checkout@v2
      - name: Run remark cli
        uses: tj-actions/remark@v3

Table of Contents

Inputs

INPUT TYPE REQUIRED DEFAULT DESCRIPTION
args string true "--output" remark cli options.
files string true "README.md" List of input markdown files
plugins string true "remark-toc" List of remarkjs plugins.
rc_path string false Remark configuration file

Example

Generate a PR each time your README.md changes

...
    steps:
      - name: Run remark cli
        uses: tj-actions/remark@v3
      - name: Verify Changed files
        uses: tj-actions/verify-changed-files@v6
        id: verify_changed_files
        with:
          files: |
            README.md
      - name: Create Pull Request
        if: steps.verify_changed_files.outputs.files_changed == 'true'
        uses: peter-evans/create-pull-request@v3
        with:
          base: "main"
          title: "Updated README.md"
          branch: "chore/update-readme"
          commit-message: "Updated README.md"
          body: "Updated README.md"
          token: ${{ github.token }}


If you feel generous and want to show some extra appreciation:

Buy me a coffee

Features

And many more using an array of remarkjs plugins.

Credits

This package was created with Cookiecutter using cookiecutter-action

Report Bugs

Report bugs at https://github.com/tj-actions/remark/issues.

If you are reporting a bug, please include:

  • Your operating system name and version.
  • Any details about your workflow that might be helpful in troubleshooting.
  • Detailed steps to reproduce the bug.