# Copyright 2023 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. name: Minimal workflow to test github action token on: workflow_dispatch permissions: write-all jobs: minimal_token_test: name: minimal_token_test runs-on: ubuntu-latest permissions: contents: write pull-requests: write steps: - name: Checkout Flutter Repo uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: repository: flutter/flutter token: ${{ github.token }} path: flutter ref: master fetch-depth: 0 - name: Write a random file run: | cd flutter touch empty.json - name: Create Pull Request uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc with: path: flutter commit-message: blah committer: GitHub token: ${{ secrets.FLUTTERACTIONSBOT_CP_TOKEN }} labels: | cp: review title: '[github actions] testing purposes' reviewers: xilaizhang