Skip to content

Commit

Permalink
Publishing test
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jul 23, 2023
1 parent da44824 commit 27b2b96
Show file tree
Hide file tree
Showing 9 changed files with 9,079 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
dist/
Java.java
25 changes: 25 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: format-rst-files-action
description: 'A GitHub Action to format RST files using rstfmt'
branding:
icon: file-text
color: white
inputs:
files:
description: 'Pattern to match the files to be formatted.'
required: false
default: '**/*.rst'
commit:
description: 'Whether or not you want the action to push to your repo with the formatting.'
required: false
default: 'true'
github-username:
description: 'Username for the github action to commit with.'
required: false
default: 'github-actions'
commit-message:
description: 'Message for formatter commit.'
required: false
default: 'Format Rst'
runs:
using: node16
main: 'build/index.js'
362 changes: 362 additions & 0 deletions build/LICENSE

Large diffs are not rendered by default.

Loading

0 comments on commit 27b2b96

Please sign in to comment.