This is an automated email from the ASF dual-hosted git repository. popduke pushed a commit to branch apache-site-build in repository https://gitbox.apache.org/repos/asf/bifromq-sites.git
commit fb2afaab9d947455b69872b4514bca2ae7435e49 Author: Yonny Hao <[email protected]> AuthorDate: Mon Jun 23 19:18:26 2025 +0800 move actions yml to correct folder --- .github/{ => workflows}/ci.yml | 5 ++--- .github/{ => workflows}/deploy-prod.yml | 0 .github/{ => workflows}/deploy-staging.yml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/ci.yml b/.github/workflows/ci.yml similarity index 97% rename from .github/ci.yml rename to .github/workflows/ci.yml index d5e35a9..88071e5 100644 --- a/.github/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ name: CI on: pull_request: - branches: [ main ] + branches: [master] push: - branches: [ main ] + branches: [master] # Concurrency strategy: # github.workflow: distinguish this workflow from others @@ -42,5 +42,4 @@ jobs: steps: - uses: actions/checkout@v4 - uses: korandoru/hawkeye@v4 - # TODO: enable markdownlint & typos diff --git a/.github/deploy-prod.yml b/.github/workflows/deploy-prod.yml similarity index 100% rename from .github/deploy-prod.yml rename to .github/workflows/deploy-prod.yml diff --git a/.github/deploy-staging.yml b/.github/workflows/deploy-staging.yml similarity index 98% rename from .github/deploy-staging.yml rename to .github/workflows/deploy-staging.yml index a96b780..42de205 100644 --- a/.github/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -19,7 +19,7 @@ name: Deploy To ASF Staging on: push: - branches: [main] + branches: [master] workflow_dispatch: jobs:
