Skip to content

Commit

Permalink
Bump to version 0.1.0 (#45)
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo authored Sep 8, 2021
1 parent 3d801ab commit 340df2b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
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 }}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 340df2b

Please sign in to comment.