Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion close-issue/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ runs:
INPUT_STATE_REASON: ${{ inputs.state-reason }}
INPUT_GITHUB_TOKEN: ${{ inputs.github-token }}
run: |
ORIGINAL_DIR=$(pwd)
cd ${{ github.action_path }}
go build -o close-issue main.go
./close-issue
cd "$ORIGINAL_DIR"
${{ github.action_path }}/close-issue
4 changes: 3 additions & 1 deletion comment-issue/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ runs:
INPUT_COMMENT_BODY: ${{ inputs.comment-body }}
INPUT_GITHUB_TOKEN: ${{ inputs.github-token }}
run: |
ORIGINAL_DIR=$(pwd)
cd ${{ github.action_path }}
go build -o comment-issue main.go
./comment-issue
cd "$ORIGINAL_DIR"
${{ github.action_path }}/comment-issue
4 changes: 3 additions & 1 deletion create-issue/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ runs:
INPUT_ISSUE_BODY: ${{ inputs.issue-body }}
INPUT_ADDITIONAL_LABELS: ${{ inputs.additional-labels }}
run: |
ORIGINAL_DIR=$(pwd)
cd ${{ github.action_path }}
go build -o create-issue main.go
./create-issue
cd "$ORIGINAL_DIR"
${{ github.action_path }}/create-issue
4 changes: 3 additions & 1 deletion find-issue/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ runs:
INPUT_ISSUE_TITLE: ${{ inputs.issue-title }}
INPUT_GITHUB_TOKEN: ${{ inputs.github-token }}
run: |
ORIGINAL_DIR=$(pwd)
cd ${{ github.action_path }}
go build -o find-issue main.go
./find-issue
cd "$ORIGINAL_DIR"
${{ github.action_path }}/find-issue
4 changes: 3 additions & 1 deletion get-latest-semver-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ runs:
INPUT_PREFIX: ${{ inputs.prefix }}
INPUT_DEFAULT_VERSION: ${{ inputs.default-version }}
run: |
ORIGINAL_DIR=$(pwd)
cd ${{ github.action_path }}
go build -o get-latest-semver-tag main.go
./get-latest-semver-tag
cd "$ORIGINAL_DIR"
${{ github.action_path }}/get-latest-semver-tag

branding:
icon: 'tag'
Expand Down
4 changes: 3 additions & 1 deletion get-next-semver/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ runs:
INPUT_INCREMENT_MINOR: ${{ inputs.increment-minor }}
INPUT_PREFIX: ${{ inputs.prefix }}
run: |
ORIGINAL_DIR=$(pwd)
cd ${{ github.action_path }}
go build -o get-next-semver main.go
./get-next-semver
cd "$ORIGINAL_DIR"
${{ github.action_path }}/get-next-semver

branding:
icon: 'arrow-up'
Expand Down
4 changes: 3 additions & 1 deletion tag-and-create-semver-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@ runs:
INPUT_GITHUB_TOKEN: ${{ inputs.github-token }}
GITHUB_TOKEN: ${{ inputs.github-token }}
run: |
ORIGINAL_DIR=$(pwd)
cd ${{ github.action_path }}
go build -o tag-and-create-semver-release main.go
./tag-and-create-semver-release
cd "$ORIGINAL_DIR"
${{ github.action_path }}/tag-and-create-semver-release

branding:
icon: 'tag'
Expand Down
Loading