Skip to content

Commit

Permalink
Merge branch 'main' into mptcp
Browse files Browse the repository at this point in the history
  • Loading branch information
mzz2017 authored Aug 27, 2024
2 parents 2c55d56 + 18b6570 commit a2c7c50
Show file tree
Hide file tree
Showing 5 changed files with 246 additions and 183 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/trigger-downstream-flake-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# _
# __| | __ _ ___
# / _` |/ _` |/ _ \
# | (_| | (_| | __/
# \__,_|\__,_|\___|
#
# Copyright (C) 2024 @daeuniverse <https://github.com/daeuniverse>
#
# This is a open-source software, liscensed under the AGPL-3.0 License.
# See /License for more information.

---
name: Trigger downstream sync workflow

on:
workflow_dispatch:
push:
branches:
- 'main'

env:
DOWNSTREAM_REPO: flake.nix
WORKFLOW_BRANCH: unstable
WORKFLOW_FILE: sync-upstream.yml

jobs:
dispatch-downstream-workflow:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub auth token
# https://github.com/tibdex/github-app-token
id: generate_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.GH_APP_ID }}
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}

- name: Dispatch
uses: convictional/[email protected]
with:
owner: ${{ github.repository_owner }}
repo: ${{ env.DOWNSTREAM_REPO }}
github_token: ${{ steps.generate_token.outputs.token }}
workflow_file_name: ${{ env.WORKFLOW_FILE }}
ref: ${{ env.WORKFLOW_BRANCH }}
client_payload: '{"project":"dae","branch":"${{ env.WORKFLOW_BRANCH }}"}'
trigger_workflow: true
propagate_failure: false
wait_workflow: false
17 changes: 15 additions & 2 deletions CHANGELOGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ curl --silent "https://api.github.com/repos/daeuniverse/dae/releases" | jq -r '.

<!-- BEGIN NEW TOC ENTRY -->

- [v0.7.1 (Latest)](#v071-latest)
- [v0.8.0rc1 (Pre-release)](#v080rc1-pre-release)
- [v0.7.0 (Latest)](#v070-latest)
- [v0.7.0](#v070)
- [v0.6.0](#v060)
- [v0.5.1](#v051)
- [v0.5.0](#v050)
Expand All @@ -41,6 +42,18 @@ curl --silent "https://api.github.com/repos/daeuniverse/dae/releases" | jq -r '.
- [v0.1.0](#v010)
<!-- BEGIN NEW CHANGELOGS -->

### v0.7.1 (Latest)

> Release date: 2024/08/21
#### Bug Fixes

- fix(cmd/run.go): always check whether network online (#588)
- fix(udp_task_pool): panic: close of closed channel (#570)
- fix: unknown tls implementation (#569)

#### Bug Fixes

### v0.8.0rc1 (Pre-release)

> Release date: 2024/07/22
Expand Down Expand Up @@ -78,7 +91,7 @@ curl --silent "https://api.github.com/repos/daeuniverse/dae/releases" | jq -r '.

**Full Changelog**: https://github.com/daeuniverse/dae/compare/v0.7.0...v0.8.0rc1

### v0.7.0 (Latest)
### v0.7.0

> Release date: 2024/07/21
Expand Down
Loading

0 comments on commit a2c7c50

Please sign in to comment.