Skip to content

Commit

Permalink
fix some format
Browse files Browse the repository at this point in the history
  • Loading branch information
okuzawats committed Jul 2, 2024
1 parent 7057a25 commit 1d6c7b9
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@ runs:
uses: "actions/checkout@v4"
with:
fetch-depth: 0
- name: set up ruby
uses: ruby/setup-ruby@v1
- name: run action
run: ruby $GITHUB_ACTION_PATH/main.rb
shell: sh
- name: "set up ruby"
uses: "ruby/setup-ruby@v1"
- name: "run action"
run: |
ruby $GITHUB_ACTION_PATH/main.rb
shell: "sh"
env:
API_TOKEN: ${{ inputs.apiToken }}
ROOM_ID: ${{ inputs.roomId }}
MESSAGE: ${{ inputs.message }}
MESSAGE_TYPE: ${{ inputs.messageType }}
USER_IDS_TO_ASSIGN_TASK: ${{ inputs.userIdsToAssignTask }}
API_TOKEN: "${{ inputs.apiToken }}"
ROOM_ID: "${{ inputs.roomId }}"
MESSAGE: "${{ inputs.message }}"
MESSAGE_TYPE: "${{ inputs.messageType }}"
USER_IDS_TO_ASSIGN_TASK: "${{ inputs.userIdsToAssignTask }}"

0 comments on commit 1d6c7b9

Please sign in to comment.