From a46863b96d36d199bf18b8d779f9cdfe08460c05 Mon Sep 17 00:00:00 2001 From: Guido Grazioli Date: Mon, 14 Oct 2024 10:37:51 +0200 Subject: [PATCH] force int type in when --- .github/workflows/traffic.yml | 14 +++++++------- CHANGELOG.rst | 6 +++--- docs/_gh_include/footer.inc | 4 ++-- docs/index.rst | 1 + roles/activemq/handlers/main.yml | 2 +- 5 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/traffic.yml b/.github/workflows/traffic.yml index b4f245e2..d997f4e1 100644 --- a/.github/workflows/traffic.yml +++ b/.github/workflows/traffic.yml @@ -1,9 +1,9 @@ name: Collect traffic stats on: - schedule: + schedule: - cron: "51 23 * * 0" - workflow_dispatch: - + workflow_dispatch: + jobs: traffic: runs-on: ubuntu-latest @@ -11,12 +11,12 @@ jobs: - uses: actions/checkout@v2 with: ref: "gh-pages" - - - name: GitHub traffic + + - name: GitHub traffic uses: sangonzal/repository-traffic-action@v.0.1.6 env: - TRAFFIC_ACTION_TOKEN: ${{ secrets.TRIGGERING_PAT }} - + TRAFFIC_ACTION_TOKEN: ${{ secrets.TRIGGERING_PAT }} + - name: Commit changes uses: EndBug/add-and-commit@v4 with: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 67ad4469..f0773503 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,6 @@ -======================================== -middleware\_automation.amq Release Notes -======================================== +============= +Release Notes +============= .. contents:: Topics diff --git a/docs/_gh_include/footer.inc b/docs/_gh_include/footer.inc index 80a8059f..11c1cfe2 100644 --- a/docs/_gh_include/footer.inc +++ b/docs/_gh_include/footer.inc @@ -7,7 +7,7 @@
-

© Copyright 2023, Red Hat, Inc.

+

© Copyright 2024, Red Hat, Inc.

Built with Sphinx using a theme @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/docs/index.rst b/docs/index.rst index 9703ed70..d16c3e88 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -41,4 +41,5 @@ Welcome to AMQ Collection documentation Infinispan / Red Hat Data Grid Tomcat / Red Hat JWS Kafka / Red Hat AMQ Streams + Ansible Middleware utilities JCliff diff --git a/roles/activemq/handlers/main.yml b/roles/activemq/handlers/main.yml index eb9a80d5..232e5faa 100644 --- a/roles/activemq/handlers/main.yml +++ b/roles/activemq/handlers/main.yml @@ -5,7 +5,7 @@ - name: "Restart handler" ansible.builtin.include_tasks: restart.yml - when: activemq_configuration_file_refresh_period < 1 + when: activemq_configuration_file_refresh_period | int < 1 listen: "restart amq_broker with no config refresh" - name: "Restart handler"