Skip to content

chore: update changelog #3487

chore: update changelog

chore: update changelog #3487

Workflow file for this run

#
# Software Name: Orange Unified Design System
# SPDX-FileCopyrightText: Copyright (c) Orange SA
# SPDX-License-Identifier: MIT
#
# This software is distributed under the MIT license,
# the text of which is available at https://opensource.org/license/MIT/
# or see the "LICENSE" file for more details.
#
# Authors: See CONTRIBUTORS.txt
# Software description: A SwiftUI components library with code examples for Orange Unified Design System
#
name: Lint code with SwiftLint
# Rules for this GitHub Actions workflow
# - workflow can be triggered manually if needed (workflow_dispatch)
# - use "almost" frozen version of macOS
# - is for all branches except main as linter will be run earlier in the flow on previous branches
# - automatically triggered when pull request is opened and has new commits (synchronize)
# But beware, triggered on commit push, so do not be a push-machine-gun!
on:
push:
branches-ignore:
- main
workflow_dispatch:
pull_request:
types:
- opened
- synchronize
branches-ignore:
- main
permissions:
contents: read
# Cancel-in-progress to avoid to have more and more runs for the same thing in the branch or pull request
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
SwiftLint:
runs-on: macos-26
timeout-minutes: 60
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: cirruslabs/swiftlint-action@37b78e658ba6bcb1679df34819a4a8d8c269a940 # v1.1.0, https://github.com/cirruslabs/swiftlint-action
with:
version: latest