Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit 5ecac64

Browse files
authored
Merge pull request #2326 from comit-network/release/0.7.2
Release version 0.7.2
2 parents d11346b + f1070ea commit 5ecac64

127 files changed

Lines changed: 4207 additions & 3669 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Sync labels
2+
3+
on:
4+
repository_dispatch:
5+
types:
6+
- sync-labels
7+
8+
jobs:
9+
sync:
10+
runs-on: ubuntu-latest
11+
name: Sync labels from coblox/admin
12+
steps:
13+
- name: Download label file
14+
env:
15+
REPO_TOKEN: ${{ secrets.GITHUB_REPO_TOKEN }}
16+
run: |
17+
curl --header "Authorization: token ${REPO_TOKEN}" \
18+
--header 'Accept: application/vnd.github.v3.raw' \
19+
--location 'https://api.github.com/repos/coblox/admin/contents/.github/labels.yml' \
20+
--output labels.yml
21+
# For debug purposes
22+
ls; cat labels.yml
23+
- name: Sync label locally
24+
uses: micnncim/action-label-syncer@v1
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
with:
28+
manifest: labels.yml

.mergify.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,6 @@ pull_request_rules:
3232
actions:
3333
comment:
3434
message: "bors r+"
35-
- name: recreate dependabot PRs with merge conflicts
36-
conditions:
37-
- "status-success=ci/circleci: debug-build-test"
38-
- "author=dependabot-preview[bot]"
39-
- conflict
40-
- label!=no-mergify
41-
actions:
42-
comment:
43-
message: "@dependabot recreate"
4435
- name: Delete branch if the pull request is merged
4536
conditions:
4637
- merged

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.2] - 2020-03-26
11+
1012
## [0.7.1] - 2020-03-12
1113

1214
### Fixed
@@ -109,7 +111,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
109111
- Move config files to standard location based on platform (OSX, Windows, Linux).
110112
- Align implementation with RFC-002 to use the decision header instead of status codes.
111113

112-
[Unreleased]: https://github.com/comit-network/comit-rs/compare/0.7.1...HEAD
114+
[Unreleased]: https://github.com/comit-network/comit-rs/compare/0.7.2...HEAD
115+
116+
[0.7.2]: https://github.com/comit-network/comit-rs/compare/0.7.1...0.7.2
113117

114118
[0.7.0]: https://github.com/comit-network/comit-rs/compare/0.7.0...0.7.1
115119

0 commit comments

Comments
 (0)