diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml new file mode 100644 index 0000000..2d54bc9 --- /dev/null +++ b/.github/workflows/auto-merge.yml @@ -0,0 +1,29 @@ +name: Dependabot Auto Build +on: pull_request_target + +permissions: + pull-requests: write + contents: write + +jobs: + metadata: + runs-on: ubuntu-latest + outputs: + dependency-names: ${{ steps.metadata.outputs.dependency-names }} + steps: + - name: Dependabot metadata + uses: Xuanwo/fetch-metadata@v1.2.2 + id: metadata + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + + dependabot: + needs: metadata + if: ${{ needs.metadata.outputs.dependency-names != '' }} + runs-on: ubuntu-latest + steps: + - name: Enable auto-merge for dependabot PRs + run: gh pr merge --auto --squash "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GITHUB_TOKEN: ${{ secrets.ROBOT_GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 215eba5..38bdaa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). +## [v0.1.0] - 2021-09-08 + +## Fixed + +- fix: env.HDFS_NAMENODE_ADDR not set correctly (#36) +- fix: Host key verification failed while setup hdfs (#44) + ## v0.0.1 - 2021-07-06 Hello, world! [Unreleased]: https://github.com/beyondstorage/setup-hdfs/compare/v0.0.1...HEAD +[v0.1.0]: https://github.com/beyondstorage/setup-hdfs/compare/v0.0.1...v0.1.0