Skip to content

Commit

Permalink
Tunning github actions code
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisoft committed Aug 8, 2024
1 parent 7c17931 commit 7eef60e
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump-asf-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ jobs:
if ! git diff --cached --quiet; then
if ! git config --get user.email > /dev/null; then
git config --local user.email "action@github.com"
git config --local user.email "${{ github.repository_owner }}@users.noreply.github.com"
fi
if ! git config --get user.name > /dev/null; then
git config --local user.name "GitHub Action"
git config --local user.name "${{ github.repository_owner }}"
fi
git commit -m "Automatic ArchiSteamFarm reference update to ${LATEST_ASF_RELEASE}"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
issues:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
group: "${{ github.workflow }}-${{ github.head_ref || github.run_id }}"
cancel-in-progress: true

jobs:
Expand All @@ -22,5 +22,6 @@ jobs:
- uses: gautamkrishnar/keepalive-workflow@v2
timeout-minutes: 5
with:
use_api: false
committer_username: ${{ github.repository_owner }}
committer_email: ${{ github.repository_owner }}@users.noreply.github.com
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ env.PLUGIN_NAME }} V${{ github.ref }}
release_name: ${{ env.PLUGIN_NAME }} ${{ github.ref }}
body_path: .github/RELEASE_TEMPLATE.md
prerelease: true

Expand Down
48 changes: 48 additions & 0 deletions ASFFreeGames/ASFFreeGames.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,54 @@
</ItemGroup>

<ItemGroup>
<Content Include="..\.github\CODE_OF_CONDUCT.md">
<Link>.github\CODE_OF_CONDUCT.md</Link>
</Content>
<Content Include="..\.github\CONTRIBUTING.md">
<Link>.github\CONTRIBUTING.md</Link>
</Content>
<Content Include="..\.github\dependabot.yml">
<Link>.github\dependabot.yml</Link>
</Content>
<Content Include="..\.github\FUNDING.yml">
<Link>.github\FUNDING.yml</Link>
</Content>
<Content Include="..\.github\ISSUE_TEMPLATE\bug_report.md">
<Link>.github\ISSUE_TEMPLATE\bug_report.md</Link>
</Content>
<Content Include="..\.github\ISSUE_TEMPLATE\feature_request.md">
<Link>.github\ISSUE_TEMPLATE\feature_request.md</Link>
</Content>
<Content Include="..\.github\PULL_REQUEST_TEMPLATE.md">
<Link>.github\PULL_REQUEST_TEMPLATE.md</Link>
</Content>
<Content Include="..\.github\RELEASE_TEMPLATE.md">
<Link>.github\RELEASE_TEMPLATE.md</Link>
</Content>
<Content Include="..\.github\renovate.json5">
<Link>.github\renovate.json5</Link>
</Content>
<Content Include="..\.github\SECURITY.md">
<Link>.github\SECURITY.md</Link>
</Content>
<Content Include="..\.github\SUPPORT.md">
<Link>.github\SUPPORT.md</Link>
</Content>
<Content Include="..\.github\workflows\bump-asf-reference.yml">
<Link>.github\workflows\bump-asf-reference.yml</Link>
</Content>
<Content Include="..\.github\workflows\ci.yml">
<Link>.github\workflows\ci.yml</Link>
</Content>
<Content Include="..\.github\workflows\keepalive.yml">
<Link>.github\workflows\keepalive.yml</Link>
</Content>
<Content Include="..\.github\workflows\publish.yml">
<Link>.github\workflows\publish.yml</Link>
</Content>
<Content Include="..\.github\workflows\test_integration.yml">
<Link>.github\workflows\test_integration.yml</Link>
</Content>
<Content Include="..\Directory.Build.props">
<Link>Directory.Build.props</Link>
</Content>
Expand Down

0 comments on commit 7eef60e

Please sign in to comment.