diff --git a/.github/workflows/suggester.yml b/.github/workflows/pulllint.yml similarity index 98% rename from .github/workflows/suggester.yml rename to .github/workflows/pulllint.yml index a0c6b202..72731fdc 100644 --- a/.github/workflows/suggester.yml +++ b/.github/workflows/pulllint.yml @@ -1,4 +1,4 @@ -name: Lint +name: PullLint on: [pull_request] jobs: golangci: diff --git a/.github/workflows/golint.yml b/.github/workflows/pushlint.yml similarity index 100% rename from .github/workflows/golint.yml rename to .github/workflows/pushlint.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d164ecbf..d411c2e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,19 +46,19 @@ jobs: run: CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=6 go build -ldflags="-s -w" -o artifacts/zerobot-plugin-linux-armv6 - name: Create Release - id: create_release - uses: actions/create-release@v1 - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: false + id: create_release + uses: actions/create-release@v1 + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: false + prerelease: false - - name: Upload Release Asset - id: upload-release-asset - uses: actions/upload-release-asset@v1 - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: ./artifacts - asset_name: zerobot-plugin-* - asset_content_type: application/octet-stream \ No newline at end of file + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps + asset_path: ./artifacts + asset_name: zerobot-plugin-* + asset_content_type: application/octet-stream \ No newline at end of file