From 7233539a45991e2aacec5837ccbe9ba97febd2bb Mon Sep 17 00:00:00 2001 From: "Weinfurtner Jared (CI/SIX-EU)" Date: Thu, 1 Sep 2022 13:56:12 +0200 Subject: [PATCH 1/4] stale issue cleanup github action w/ reusable workflow Signed-off-by: Weinfurtner Jared (CI/SIX-EU) --- .github/workflows/stale-issue-cleanup.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/stale-issue-cleanup.yml diff --git a/.github/workflows/stale-issue-cleanup.yml b/.github/workflows/stale-issue-cleanup.yml new file mode 100644 index 0000000..33ca829 --- /dev/null +++ b/.github/workflows/stale-issue-cleanup.yml @@ -0,0 +1,22 @@ +# +# Copyright (c) 2022 - for information on the respective copyright owner +# see the NOTICE file and/or the repository https://github.com/carbynestack/.github. +# +# SPDX-License-Identifier: Apache-2.0 +# +name: 'Stale Issue Cleanup' + +on: + + # Allow workflow to be triggered manually + workflow_dispatch: + + # Trigger at 1:00 AM each day + schedule: + - cron: '0 1 * * *' + +jobs: + + # re-usable workflow @see https://docs.github.com/en/actions/using-workflows/reusing-workflows + stale-issue-cleanup: + uses: carbynestack/.github/.github/workflows/stale-actions.yml@main From b14696fc8fdff7668eb94dd66a8fe9c069e71ebe Mon Sep 17 00:00:00 2001 From: "Weinfurtner Jared (CI/SIX-EU)" Date: Wed, 16 Nov 2022 16:47:05 +0100 Subject: [PATCH 2/4] auto labeling github action for #42 Signed-off-by: Weinfurtner Jared (CI/SIX-EU) --- .github/workflows/auto-labeler.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/auto-labeler.yml diff --git a/.github/workflows/auto-labeler.yml b/.github/workflows/auto-labeler.yml new file mode 100644 index 0000000..64f4cf5 --- /dev/null +++ b/.github/workflows/auto-labeler.yml @@ -0,0 +1,23 @@ +# +# Copyright (c) 2022 - for information on the respective copyright owner +# see the NOTICE file and/or the repository https://github.com/carbynestack/.github. +# +# SPDX-License-Identifier: Apache-2.0 +# +name: 'Stale Issue Cleanup' + +on: + + # Allow workflow to be triggered manually + workflow_dispatch: + + issues: + types: + - reopened + - opened + +jobs: + + # re-usable workflow @see https://docs.github.com/en/actions/using-workflows/reusing-workflows + stale-issue-cleanup: + uses: carbynestack/.github/.github/workflows/auto-labeler.yml@main From 31b4eed83253213c36aaea82c9defadea559068f Mon Sep 17 00:00:00 2001 From: "Weinfurtner Jared (CI/SIX-EU)" Date: Wed, 16 Nov 2022 16:54:44 +0100 Subject: [PATCH 3/4] fixing auto-labeler github action name Signed-off-by: Weinfurtner Jared (CI/SIX-EU) --- .github/workflows/auto-labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-labeler.yml b/.github/workflows/auto-labeler.yml index 64f4cf5..447982d 100644 --- a/.github/workflows/auto-labeler.yml +++ b/.github/workflows/auto-labeler.yml @@ -4,7 +4,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -name: 'Stale Issue Cleanup' +name: 'Auto Labeler' on: From 3484dce865ca5a9efe46d3130e7928d704cda625 Mon Sep 17 00:00:00 2001 From: Sebastian Becker Date: Thu, 24 Nov 2022 16:00:49 +0100 Subject: [PATCH 4/4] Fix reusable workflow branch Signed-off-by: Sebastian Becker --- .github/workflows/auto-labeler.yml | 6 +++--- .github/workflows/stale-issue-cleanup.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/auto-labeler.yml b/.github/workflows/auto-labeler.yml index 447982d..ad8c857 100644 --- a/.github/workflows/auto-labeler.yml +++ b/.github/workflows/auto-labeler.yml @@ -1,6 +1,6 @@ # # Copyright (c) 2022 - for information on the respective copyright owner -# see the NOTICE file and/or the repository https://github.com/carbynestack/.github. +# see the NOTICE file and/or the repository https://github.com/carbynestack/cli. # # SPDX-License-Identifier: Apache-2.0 # @@ -19,5 +19,5 @@ on: jobs: # re-usable workflow @see https://docs.github.com/en/actions/using-workflows/reusing-workflows - stale-issue-cleanup: - uses: carbynestack/.github/.github/workflows/auto-labeler.yml@main + auto-labeling: + uses: carbynestack/.github/.github/workflows/auto-labeler.yml@master diff --git a/.github/workflows/stale-issue-cleanup.yml b/.github/workflows/stale-issue-cleanup.yml index 33ca829..fbc0b70 100644 --- a/.github/workflows/stale-issue-cleanup.yml +++ b/.github/workflows/stale-issue-cleanup.yml @@ -1,6 +1,6 @@ # # Copyright (c) 2022 - for information on the respective copyright owner -# see the NOTICE file and/or the repository https://github.com/carbynestack/.github. +# see the NOTICE file and/or the repository https://github.com/carbynestack/cli. # # SPDX-License-Identifier: Apache-2.0 # @@ -19,4 +19,4 @@ jobs: # re-usable workflow @see https://docs.github.com/en/actions/using-workflows/reusing-workflows stale-issue-cleanup: - uses: carbynestack/.github/.github/workflows/stale-actions.yml@main + uses: carbynestack/.github/.github/workflows/stale-actions.yml@master