mirror of
https://code.forgejo.org/actions/go-versions.git
synced 2024-11-06 07:35:52 -05:00
c455148af9
* migrated Go to GA * commented tests * commented tests * fixed upload * fixed trigger_pr * fixed trigger_pr * fixed tests * removed comment * updated build-go-packages and create-pr * update * updated helpers * fixed build-go-packages * updated build-go-packages.yml * updated build-go.ps1 * updated Go.Tests.ps1 * fixed tests * fixed go tests * fixed go tests * fixed tests * fixed "version is correct" test * updated "version is correct" test * fixed Invoke-Expression * Remove Create-ArtifactDirectories function * fixed tests * fixed tests * fix test * fixed trigger_pr * Update to Pester 5 * update * updated * fixed test * fixed tests * fixed tests Co-authored-by: Nikita Bykov <v-nibyko@microsoft.com>
33 lines
No EOL
1.4 KiB
YAML
33 lines
No EOL
1.4 KiB
YAML
name: Create Pull Request
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: pwsh
|
|
|
|
jobs:
|
|
create_pr:
|
|
name: Create Pull Request
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Create versions-manifest.json
|
|
run: |
|
|
./helpers/packages-generation/manifest-generator.ps1 -RepositoryFullName "$env:GITHUB_REPOSITORY" `
|
|
-GitHubAccessToken "${{secrets.GITHUB_TOKEN}}" `
|
|
-OutputFile "./versions-manifest.json" `
|
|
-ConfigurationFile "./config/go-manifest-config.json"
|
|
- name: Create GitHub PR
|
|
run: |
|
|
$formattedDate = Get-Date -Format "MM/dd/yyyy"
|
|
./helpers/github/create-pull-request.ps1 `
|
|
-RepositoryFullName "$env:GITHUB_REPOSITORY" `
|
|
-AccessToken "${{secrets.GITHUB_TOKEN}}" `
|
|
-BranchName "update-versions-manifest-file" `
|
|
-CommitMessage "Update versions-manifest" `
|
|
-PullRequestTitle "[versions-manifest] Update for release from ${formattedDate}" `
|
|
-PullRequestBody "Update versions-manifest.json for release from ${formattedDate}" |