We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e11b57a commit 824a328Copy full SHA for 824a328
.github/workflows/build-dev-and-ci.yml
@@ -72,6 +72,18 @@ jobs:
72
projectName: graphite-dev
73
directory: frontend/dist
74
75
+ - name: 💬 Comment build link
76
+ if: github.event_name == 'push'
77
+ uses: actions/github-script@v6
78
+ with:
79
+ script: |
80
+ github.rest.repos.createCommitComment({
81
+ owner: github.repo.owner,
82
+ repo: github.repo.repo,
83
+ commit_sha: github.sha,
84
+ body: '| 📦 **Build Complete for** ${{ github.sha }} |\n|-|\n| ${{ steps.cloudflare.outputs.url }} |'
85
+ })
86
+
87
- name: 👕 Lint Graphite web formatting
88
env:
89
NODE_ENV: production
0 commit comments