chore: Try renaming file #12
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
| # SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital and contributors | |
| # SPDX-License-Identifier: MIT | |
| name: "Test github action" | |
| on: | |
| push: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| test-action: | |
| name: Test action | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Sync markdown files to Confluence | |
| uses: Telefonica/[email protected] | |
| with: | |
| mode: tree | |
| docs-dir: './docs' | |
| confluence-url: 'https://confluence.tid.es' | |
| confluence-root-page-id: '333418648' | |
| confluence-space-key: 'CTO' | |
| confluence-personal-access-token: ${{ secrets.CONFLUENCE_PAT }} | |
| env: | |
| DOCS_HOST: https://foo.testing.com |