OPENNLP-1927: Expand Hunspell dictionary support #693
Workflow file for this run
This file contains hidden or 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
| # Licensed to the Apache Software Foundation (ASF) under one or more | |
| # contributor license agreements. See the NOTICE file distributed with | |
| # this work for additional information regarding copyright ownership. | |
| # The ASF licenses this file to You under the Apache License, Version 2.0 | |
| # (the "License"); you may not use this file except in compliance with | |
| # the License. You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| # Verifies that every GitHub Action referenced via `uses:` in .github/**/*.yml is | |
| # on the ASF approved-actions allowlist, see: | |
| # https://github.com/apache/infrastructure-actions/tree/main/allowlist-check | |
| # This guards against disallowed Actions sneaking in, e.g. via Dependabot | |
| # github-actions update PRs. It is wired up as a required status check in .asf.yaml. | |
| name: ASF Allowlist Check | |
| on: | |
| workflow_dispatch: | |
| # No paths filter on purpose: as a required status check this job must report a | |
| # status on every PR, otherwise PRs that don't touch .github/** would be blocked. | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - opennlp-2.x | |
| paths: | |
| - ".github/**" | |
| concurrency: | |
| # A new commit on a pull request makes the run in flight obsolete, so cancel it | |
| # instead of paying for a result nobody will read. Pushes to a branch group by ref | |
| # and are never cancelled, so every commit on main keeps a full build. | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| asf-allowlist-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: apache/infrastructure-actions/allowlist-check@main |