Skip to content

Commit 340df2b

Browse files
authored
Bump to version 0.1.0 (#45)
Signed-off-by: Xuanwo <[email protected]>
1 parent 3d801ab commit 340df2b

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.github/workflows/auto-merge.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Dependabot Auto Build
2+
on: pull_request_target
3+
4+
permissions:
5+
pull-requests: write
6+
contents: write
7+
8+
jobs:
9+
metadata:
10+
runs-on: ubuntu-latest
11+
outputs:
12+
dependency-names: ${{ steps.metadata.outputs.dependency-names }}
13+
steps:
14+
- name: Dependabot metadata
15+
uses: Xuanwo/[email protected]
16+
id: metadata
17+
with:
18+
github-token: "${{ secrets.GITHUB_TOKEN }}"
19+
20+
dependabot:
21+
needs: metadata
22+
if: ${{ needs.metadata.outputs.dependency-names != '' }}
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Enable auto-merge for dependabot PRs
26+
run: gh pr merge --auto --squash "$PR_URL"
27+
env:
28+
PR_URL: ${{ github.event.pull_request.html_url }}
29+
GITHUB_TOKEN: ${{ secrets.ROBOT_GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [v0.1.0] - 2021-09-08
9+
10+
## Fixed
11+
12+
- fix: env.HDFS_NAMENODE_ADDR not set correctly (#36)
13+
- fix: Host key verification failed while setup hdfs (#44)
14+
815
## v0.0.1 - 2021-07-06
916

1017
Hello, world!
1118

1219
[Unreleased]: https://github.com/beyondstorage/setup-hdfs/compare/v0.0.1...HEAD
20+
[v0.1.0]: https://github.com/beyondstorage/setup-hdfs/compare/v0.0.1...v0.1.0

0 commit comments

Comments
 (0)