Skip to content

Commit

Permalink
Merge branch 'develop' into dependabot/npm_and_yarn/ui/develop/develo…
Browse files Browse the repository at this point in the history
…pment-dependencies-8b649a824e
  • Loading branch information
nimdanitro authored Oct 2, 2024
2 parents 99cb6f6 + 76f9c60 commit c86aac6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Test & Push Image
name: Changelog
on:
push:
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: PR Conventional Commit Validation
uses: ytanikin/PRConventionalCommits@1.3.0
uses: f-eld-ch/PRConventionalCommits@main
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert", "security"]'
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
### ⚙️ Other

- *(deps)* Bump ytanikin/PRConventionalCommits from 1.1.0 to 1.3.0 ([#450](https://github.com/f-eld-ch/sitrep/issues/450)) - ([c8ed466](https://github.com/f-eld-ch/sitrep/commit/c8ed466fea65fda46f15826a8aae3332b6f0bb8a))
- Use forked ConventionalCommits validation workflow ([#453](https://github.com/f-eld-ch/sitrep/issues/453)) - ([0c28812](https://github.com/f-eld-ch/sitrep/commit/0c28812b18868a4e3d8636b84aba88c6acdb107e))
- Use dedicated app for changelog ([#451](https://github.com/f-eld-ch/sitrep/issues/451)) - ([4864691](https://github.com/f-eld-ch/sitrep/commit/486469108df6eb4654f7d872ab877a16ad2fb84e))

## New Contributors ❤️

* @ made their first contribution

## [24.10.0](https://github.com/f-eld-ch/sitrep/compare/v24.9.0..v24.10.0) - 2024-10-01

Expand Down
4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ body = """
{% endfor -%}
{% endfor -%}
{%- if github -%}
{% if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
{% if github.contributors | filter(attribute="is_first_time", value=true) | filter(attribute="username") | length != 0 %}
## New Contributors ❤️
{% endif %}\
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) | filter(attribute="username") %}
* @{{ contributor.username }} made their first contribution
{%- if contributor.pr_number %} in \
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
Expand Down

0 comments on commit c86aac6

Please sign in to comment.