Improvement: handle stale issues and prs #2022
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OpenDTU-OnBattery Build | |
on: | |
push: | |
paths-ignore: | |
- docs/** | |
- '**/*.md' | |
branches: | |
- master | |
- development | |
tags-ignore: | |
- 'v**' | |
pull_request: | |
paths-ignore: | |
- docs/** | |
- '**/*.md' | |
jobs: | |
get_default_envs: | |
name: Gather Environments | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache pip | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Install PlatformIO | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade platformio | |
- name: Get default environments | |
id: envs | |
run: | | |
echo "environments=$(pio project config --json-output | jq -cr '.[1][1][0][1]|split(",")')" >> $GITHUB_OUTPUT | |
outputs: | |
environments: ${{ steps.envs.outputs.environments }} | |
build: | |
name: Build Environments | |
runs-on: ubuntu-24.04 | |
needs: get_default_envs | |
strategy: | |
matrix: | |
environment: ${{ fromJSON(needs.get_default_envs.outputs.environments) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get tags | |
run: git fetch --force --tags origin | |
- name: Create and switch to a meaningful branch for pull-requests | |
if: github.event_name == 'pull_request' | |
run: | | |
OWNER=${{ github.repository_owner }} | |
NAME=${{ github.event.repository.name }} | |
ID=${{ github.event.pull_request.number }} | |
DATE=$(date +'%Y%m%d%H%M') | |
git switch -c ${OWNER}/${NAME}/pr${ID}-${DATE} | |
- name: Cache pip | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Cache PlatformIO | |
uses: actions/cache@v4 | |
with: | |
path: ~/.platformio | |
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Install PlatformIO | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade platformio setuptools | |
- name: Enable Corepack | |
run: | | |
cd webapp | |
corepack enable | |
- name: Setup Node.js and yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
cache: "yarn" | |
cache-dependency-path: "webapp/yarn.lock" | |
- name: Install WebApp dependencies | |
run: | | |
cd webapp | |
yarn install --frozen-lockfile | |
- name: Build WebApp | |
run: | | |
cd webapp | |
yarn build | |
- name: Build firmware | |
run: pio run -e ${{ matrix.environment }} | |
- name: Rename Firmware | |
run: mv .pio/build/${{ matrix.environment }}/firmware.bin .pio/build/${{ matrix.environment }}/opendtu-onbattery-${{ matrix.environment }}.bin | |
- name: Rename Factory Firmware | |
run: mv .pio/build/${{ matrix.environment }}/firmware.factory.bin .pio/build/${{ matrix.environment }}/opendtu-onbattery-${{ matrix.environment }}.factory.bin | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: opendtu-onbattery-${{ matrix.environment }} | |
path: | | |
.pio/build/${{ matrix.environment }}/opendtu-onbattery-${{ matrix.environment }}.bin | |
!.pio/build/generic_esp32_4mb_no_ota/opendtu-onbattery-generic_esp32_4mb_no_ota.bin | |
.pio/build/${{ matrix.environment }}/opendtu-onbattery-${{ matrix.environment }}.factory.bin | |
release: | |
name: Create Release | |
runs-on: ubuntu-24.04 | |
needs: [get_default_envs, build] | |
if: startsWith(github.ref, 'refs/tags/2') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get tags | |
run: git fetch --force --tags origin | |
- name: Get openDTU core release | |
run: | | |
echo "OPEN_DTU_CORE_RELEASE=$(git for-each-ref --sort=creatordate --format '%(refname) %(creatordate)' refs/tags | grep 'refs/tags/v' | tail -1 | sed 's#.*/##' | sed 's/ .*//')" >> $GITHUB_ENV | |
# disabled as uploading the changed gist failed repeatedly. | |
# maybe the token in secrets.GIST_SECRET has expired? | |
# need help from repo owner @helgeerbe to fix this. | |
# - name: Create openDTU-core-release-Badge | |
# uses: schneegans/[email protected] | |
# with: | |
# auth: ${{ secrets.GIST_SECRET }} | |
# gistID: 68b47cc8c8994d04ab3a4fa9d8aee5e6 | |
# filename: openDTUcoreRelease.json | |
# label: based on original OpenDTU | |
# message: ${{ env.OPEN_DTU_CORE_RELEASE }} | |
# color: lightblue | |
- name: Build Changelog | |
id: github_release | |
uses: mikepenz/release-changelog-builder-action@v4 | |
with: | |
failOnError: true | |
commitMode: true | |
configuration: ".github/workflows/config/release-notes-config.json" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/download-artifact@v4 | |
with: | |
path: artifacts/ | |
- name: Move all files to the same location | |
run: | | |
ls -R | |
cd artifacts | |
for i in */; do cp ${i}opendtu-onbattery-*.bin ./; done | |
- name: Create release | |
uses: softprops/action-gh-release@v2 | |
with: | |
body: ${{steps.github_release.outputs.changelog}} | |
draft: False | |
files: | | |
artifacts/*.zip, artifacts/*.bin | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
stale: | |
name: 'Stale (dry run)' | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
debug-only: true # TODO: remove before adding to repo-maintenance.yml | |
start-date: 2024-01-01 # TODO: discuss start-date | |
operations-per-run: 300 | |
remove-stale-when-updated: true | |
days-before-issue-stale: 14 | |
days-before-issue-close: 14 # days after the issue is marked as stale | |
stale-issue-message: > | |
This issue has been automatically marked as stale because it has not had | |
recent activity. It will be closed if no further activity occurs. Thank you | |
for your contributions. | |
close-issue-message: > | |
This issue has been automatically closed because it has not had | |
recent activity. Please add a comment if you want to get this issue re-opened. Thank you | |
for your contributions. | |
stale-issue-label: stale # adds a label | |
exempt-issue-labels: 'acknowledged, contribution needed' # exclude issues with label | |
days-before-pr-stale: 14 | |
days-before-pr-close: -1 # never close prs | |
stale-pr-label: stale # adds a label | |
any-of-pr-labels: 'changes requested' # only consider prs with this label | |
stale-pr-message: > | |
This pull-request has been automatically marked as stale because it has not had | |
recent activity. It will be closed if no further activity occurs. Thank you | |
for your contributions. |